The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern. The latest release of the framework offers REST-style web services development capability, also known as Web API.
0
votes
2answers
40 views
Why is this code throwing an InvalidOperationException?
I think that my code should make the ViewBag.test property equal to "No Match", but instead it throws an InvalidOperationException.
Why is this?
string str = "Hello1,Hello,Hello2";
string another = ...
0
votes
1answer
20 views
How to avoid the text from the action link
@Ajax.ActionLink(" ","Delete", "FinancialIntermediary",
new { id = item.FinancialIntermediaryID },
new AjaxOptions { HttpMethod = "GET",
...
0
votes
1answer
21 views
How can i make Recursion Asynchronous using Async and Await Keyword?
i am getting multi-level dynamic menus from database. Currently i have called it successfully but i want to make it async.
here is my code;
protected override void ...
0
votes
1answer
35 views
Why is the controller's parameterless constructor called and not the one with the biggest number of parameters
I have had a website asp.net MVC solution
My controller had 2 constructors: one parameterless and one with few parameter.
The code used to go through the ctor with the parameters, injection them ...
0
votes
1answer
15 views
Ajax.BeginForm and validation
Client side validation is not working for me in Ajax.BeginForm
This is my code:
<div id="report">
<div id="projectReport">
<div >
@{
...
1
vote
1answer
27 views
Code first with different entities
I have three model classes and three views model is given below
public class BASLPApplicationFormModel
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
...
0
votes
2answers
30 views
Using regexes to process HTML of a *known structure*
We're using a custom framework built on top of ASP.NET MVC to generate HTML from our object models at runtime without writing any views. This approach has been successful in allowing rapid application ...
0
votes
1answer
24 views
Hide a Checkbox in mvc4 without using style
I want to set the visibility of a checkbox to false without using style in mvc3.
@Html.CheckBoxFor(model => Model.Eng, new { @id = "chkEnergy1", @value = "true", @class = ...
0
votes
1answer
14 views
Is it possible to save a variable in controller
I would like to save a variable in the controller to be able to use it for all methods so I declared 3 private strings
public class BankAccountController : Controller
{
private string dateF, ...
0
votes
3answers
34 views
alternate option for getElementById in JS?
I have a MVC app.
I have written JS code below in the "Create" view. The code below code works perfectly in Google chrome and Mozilla Firefox; but it's not working in IE 8.
...
-5
votes
4answers
53 views
How to split words in ASP.NET MVC4?
How to split words in ASP.NET MVC4?
This is what I am try so far.
public ActionResult Index()
{
var aaa = System.Text.RegularExpressions.Regex.Split("12:::34:::55", ":::");
...
1
vote
2answers
41 views
MVC 3 sending class JSON
My parameter KontrolkaSamTekstLista get null data to controller ActionResult KontrolkaSubmit() but all send action to ajax looks okay.
Class
using System.Collections.Generic;
namespace ...
0
votes
1answer
29 views
How to create an ActionLink that retains the parameters from the request?
I have a view responding to the action /Page/Index/{id} (default ASP.NET MVC routing). The view contains action links that lead to the same action with the same id but with an added parameter in the ...
0
votes
1answer
35 views
How do i populate select tag based on another select
This code generates several select tags embedded in different tr tags. I am trying to populate a select tag based upon another select within the same tr tag. Hope that makes since. Anyways, I can ...
0
votes
0answers
13 views
MVC WCF Validation
I want to validate my view but I don't know what is best way to do it
I want to know if there is an option like this in my service i have
[Required(ErrorMessage = "Property is required.")]
...
0
votes
1answer
19 views
Entity framework ASP MVC 4, Referencing the wrong table
I am using the code first approach with a local database (localdb\11.0v) in ASP MVC 4. I have created my entity
public class Service
{
public int ServiceID { get; set; }
public ...
-1
votes
1answer
16 views
Error occuring in LINQ statement in MVC controller
I am developing MVC app.
I am trying to write a LINQ statement in a controller, but its giving an error...
ViewBag.CompanyIdList = new SelectList(db.Companies.OrderBy(t => ...
0
votes
2answers
23 views
Azure and SQL Server: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server
Using Azure with SQL Server. In 30% of the cases where the SimpleRoleProvider is implicitly called we get an error: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server. The ...
0
votes
0answers
22 views
Pass method from MVC to WCF
I made in my controller method that should creat another product
[HttpPost]
public ActionResult Create(ProductType product)
{
if (ModelState.IsValid){
...
3
votes
1answer
20 views
Float type field in Model while automatically created in database as real type?
Iam using mvc4 .I have a model .In that model i created a field called "AllFuels" of data type Float.
But when the table automatically created in the database the data type of the field "AllFuels" ...
0
votes
0answers
13 views
run-time error CSS1019: Unexpected token, found '@charset'
I have a CSS Stylesheet which contains following code:
@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, ...
1
vote
1answer
18 views
C#: Json validation from user input
I need to validate a json file from server side, Im using asp.net mvc with c#, so I have this method in my controller
public ActionResult Validate(HttpPostedFileBase jsonFile)
{
bool ...
0
votes
1answer
30 views
Data of Partial page is not binding in viewModel
ViewModel:
public class AdminAddMovieDataBase
{
public MovieInformation MovieInformation { get; set; }
public List<Genre> Genres { get; set; }
}
BasePage:
<div ...
0
votes
2answers
19 views
Cross browser compatibility issue for showing and hiding div
I have MVC app.
I have written below code in the JS in Create view.
Basically on the basis of selection on drop down I show and hide the div.
Now the problem is below code works perfectly in Google ...
0
votes
1answer
33 views
Get selected DropDownList item from MVC Partial view
I use @Html.DropDownList in a partial view for show the list of banks and render it in the Bank Branch view.
How can i get the selected Bank in @Html.DropDownList and fill the BankId in the ...
0
votes
0answers
18 views
knockout validation with typeahead combobox plugin
I am trying to use Knockout Validation in combination with Bootstrap Combobox Plugin.
I have a select control that is bound to my observable property which has the required attribute (for KO ...
1
vote
0answers
26 views
ASP.Net MVC4 ViewModel null properties and HttpPost
I have the following ViewModel:
public class MyViewModel
{
public int Id { get; set; }
public string Title { get; set; }
public int ParentClassId { get; set; }
public ...
0
votes
0answers
7 views
noPcommerce Display All Categories with no Parents and their Sub Categories in the category menu
I want to setup the Category menu in NopCommerce 2.5 so that when the site is first opened all the main categories with no parents and their sub categories are open as below. Then when one of the sub ...
0
votes
1answer
21 views
MVC can't override EditorTemplate name when used in EditorFor for child object
I am trying to use an EditorTemplate to display a child collection in a table in the parent’s view. The problem I have run into is that this only seems to work if the template is named exactly the ...
0
votes
2answers
15 views
How to set ActionExecutingContext status code
I am using localization actionfilterattribute and it is working perfectly fine, except I need it to redirect from / to /en with status code of 301 instead of 302. How can I fix this?
Code
public ...
2
votes
2answers
32 views
asp.net MVC 4 - output list of checkbox items, associate selections with user - allow display & editing later
ASP.NET C# MVC 4 Code First application - in Visual Studio 2012 Express, SQL Server 2012 Express.
I have a places object. I would like to output the name of all places in a list - with a check box ...
-5
votes
0answers
18 views
OpenStreetMap With ASP.NET (Offline) - No Internet Access To Web Application [closed]
Can Any one please help.
First of all Sorry and I know this is not answer for above questions. I am quite desperate for a solution and trying everywhere where they may some possibility of reply or ...
0
votes
0answers
7 views
MVC 4 - RoleProvider to manage authenticated users permissions with different scopes
Here is my problem with my MVC 4 Internet project using Forms Authentication.
Lets say i have hotels and i want the authorized users accessing each under different roles.
So the user logs in. Then ...
0
votes
0answers
31 views
InnerHTML content is different then actually seen on screen
I have dynamically created span elements that listen to an onkeyup action.
For example: When a user types into a textbox, it should replace the text inside the <span> too.
lets say I create N ...
-2
votes
1answer
32 views
Is it reasonable to develop large-scale projects in ASP.NET MVC 4?
Is it reasonable to develop large-scale projects (social networks) that in perspective will process millions of visits per day in ASP.NET MVC. I guess in that case performance of the site will be ...
-1
votes
0answers
16 views
Convert Nvelocity to Razor engine syntax [closed]
Hi I'm working on a mvc 4 app that currently uses Nvelocity templates (.vm extension) and want to use the razor engine instead. I plan to use knockout and JQuery libraries. Any suggestions?
Here is ...
0
votes
1answer
30 views
WCF MVC model for A view
Im trying to display data to my view by foreach loop but I have problem to define
@model Can someone help me please.
This is my Service Method
public IEnumerable<CategoryType> GetCatList()
...
0
votes
0answers
35 views
ASP.NET MVC Web Api 4.5 Session state
I found solutions to add Session State for web api 4.0. But I have not found one for 4.5.
Could some one point how to accomplish this?
0
votes
0answers
18 views
How to manage Web forms URL permission in MVC?
I have a Web forms project which have navigation menu with permission based links. I'm in a situation of implementing MVC in the Web forms. So, I decided to convert the navigation bar in MVC and call ...
0
votes
0answers
39 views
Multiple dropdownlists data to add multiple rows in table
This is my view:
@foreach(var student in ViewBag.Students){
<div class="editor-field">
@Html.DropDownListFor(x => x.StudentId, ...
0
votes
1answer
24 views
how to set default value HTML.TextBoxFor()
i have a view contains of form and textboxes
how to set a default value in each box for strings and int values.
i want when the page load up each box has a value so i dont need to type values.
obs. ...
1
vote
0answers
15 views
How to (not) specify scope in class libraries with Ninject3
I've an ASP.NET MVC application using Ninject3 (NuGet install). The solution contains:
an MVC project (composition root);
a Domain Model project;
a Data Layer project;
a scheduler project (running ...
0
votes
1answer
18 views
After a change to the default routing map my actionlinks stopped working
I made a change to my routing map which is following now:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}/{title}",
defaults: new { ...
0
votes
1answer
17 views
How can i load partial view dynamically?
How can i load partial view dynamically?I tried to use with querystring as below but i got error when runtime.
My code:
@Html.Partial("_Sample?id=3")
0
votes
1answer
23 views
How to export to pdf, word, excel file
I use ASP.net MVC 3.
I have these two requirement.
Frist one is creating invoice in my application. I want to export the datas to pdf , word , excel file. I downloaded itextsharp dll, can anyone tel ...
-2
votes
1answer
15 views
What the parameters for Html.BeginForm do in ASP.MVC4?
I am trying to understand this:
Html.BeginForm("Login", "Account", FormMethod.Post, new { ReturnUrl = ViewBag.ReturnUrl }
Can someone explain to me or point me to a good page where I can find some ...
0
votes
1answer
23 views
Common Language Runtime detected error in asp.net mvc views
Visual studio intellisense shows me an error "Common Language Runtime detected and invalid program when I hover the mouse on the top of asp.net mvc view. Here is code of my view.
@model ...
2
votes
1answer
69 views
Writing a generic with chaining instead of columns of grid
I have some columns in my script like following :
<script>
$("#grid").kendoGrid({
height: 400,
columns: [
"ProductName",
{ ...
0
votes
1answer
27 views
Client validation for collection of items Asp.Net MVC
In short - on my View, data-validation attributes are added only for inputs of the firs object from the colletion. I want to be able to validate inputs of any object of the collection on my View. I am ...
1
vote
2answers
38 views
Casting error in MVC
I am developing a MVC app. with razor syntax.
I am trying to delete one value from another.
@{
double DeductedAmount1 = @Model.SanctionedAmount - @Model.DeductionAmount;
}
This ...




