ASP.NET MVC 4 is the fourth major version of the ASP.NET Model-View-Controller platform for web applications.

learn more… | top users | synonyms

11
votes
2answers
8k views

How to map a route for /News/5 to my news controller

I am trying to identify how to map a route for /News/5 to my news controller. This is my NewsController: public class NewsController : BaseController { // // GET: /News public ...
11
votes
1answer
4k views

Asp.Net MVC EditorTemplates/UIHint with parameters

I've been using editor templates in the past like this (eg. [UIHint("DateTime")]) ViewModel public class MicroViewModel { public IEnumerable<Lab_Micro> Micros { get; set; } ...
11
votes
1answer
2k views

Could you explain ValidateAntiForgeryToken purpose and show me example about ValidateAntiForgeryToken

Could you explain ValidateAntiForgeryToken purpose and show me example about ValidateAntiForgeryToken in MVC 4? I could not find any example which explains me details about this attribute?
11
votes
4answers
3k views

Why InitializeSimpleMembershipAttribute in MVC 4 app

I think my understanding on SimpleMembershipProvider is almost 60% and the rest is getting to know how it internally work. You can quickly found some issue when using [InitializeSimpleMembership] ...
11
votes
1answer
2k views

Redirect to a hash from the controller using “RedirectToAction”

Hello I want to return an anchor from Mvc Controller Controller name= DefaultController; public ActionResult MyAction(int id) { return RedirectToAction("Index", "region") } So that the ...
11
votes
3answers
13k views

Ninject in ASP.NET MVC4

So after much screwing around I finally got Ninject wired in and compiling in my MVC4 application. The problem I was running into is the IDependencyScope interface no longer exists from what I can ...
11
votes
1answer
4k views

Bootstrap MVC4 scaffolding for Visual Studio 2012

I am developing a ASP.NET MVC4 application in Visual Studio 2012. I am also using twitter bootstrap. Whenever i generate a new Controller, VS2012 will automatically generate default CRUD pages for ...
11
votes
2answers
5k views

Autofac / MVC4 / WebApi (RC) Dependency Injection issue after upgrading from beta

var resolver = new AutofacWebApiDependencyResolver(container); configuration.ServiceResolver.SetResolver(resolver); after updating to ASP.NET MVC4 (RC) I get the following error: ...
11
votes
3answers
505 views

Detect when Visual Studio is test-firing the website for intellisense

There's a lot of exposition here - but it's needed. Not sure how many people are aware of this, but, the Razor code editor in Visual Studio causes your website to be 'test-fired' up to just before ...
11
votes
4answers
4k views

ASP .NET MVC 4 WebApi: Manually handle OData queries

I have a Web Service made using the WebAPI provided by ASP .NET MVC 4. I know that the layer on top of which WebAPI works automatically handles OData Queries (such as $filter, $top, $skip), but what ...
11
votes
1answer
314 views

Why is the content-range header stripped from requests in ASP.NET Web API?

I'm creating an API in which it is possible to upload a file in a chunked manner. Going by this Stackoverflow question and answer, the content-range header seems most appropriate for this. However, ...
11
votes
5answers
10k views

MVC 4 Connectionstring to SQL Server 2012

I've created a brand new MVC 4 application in C# using Visual Studio 2012. I'm trying to connect to a brand new SQL Server 2012 (Standard) instance but I can't seem to get my connection string set ...
11
votes
2answers
788 views

ServiceStack.NET Windows Authentication (NTLM) in ASP.NET MVC

How to implement Windows Authentication in a ServiceStack project build on ASP.NET MVC4? I started with a global Request-Filter added in the AppHost: private void ConfigureAuth(Funq.Container ...
11
votes
1answer
330 views

ASP.NET MVC4 not handling POST requests in IIS7 integrated mode, but in IIS7.5

I have an interesting case I cannot explain, and I need help figuring out what my problem is on IIS7: Given: ASP.NET MVC 4 web application default route registered to {controller}/{action} See ...
10
votes
1answer
8k views

Usage of the ASP.NET MVC4 jquery/javascript bundles

when I created my project with the standard MVC4 template, there was ALOT of javascript included, e.g: jquery-obtrusive, jquery-validate, knockout, the entire jQuery UI. How much of this is worth ...
10
votes
2answers
4k views

How do I set a cookie on HttpClient's HttpRequestMessage

I am trying to use the web api's HttpClient to do a post to an endpoint that requires login in the form of an HTTP cookie that identifies an account (this is only something that is #ifdef'ed out of ...
10
votes
3answers
11k views

Why is MVC4 @Styles.Render() not behaving as expected in debug mode

I am implementing the bundling and minification support in MVC4 and setting it up so it can compile my Bootstrap .less files automatically for me. I have the following code in my BundleConfig.cs file ...
10
votes
2answers
147 views

What is the difference between @Html.ValueFor(x=>x.PropertyName) and @Model.PropertyName

@Html.ValueFor(x=>x.PropertyName) @Model.PropertyName It seems like these two Razor commands do the exact same thing. Is there any special circumstance or benefit of using one over the other?
10
votes
4answers
4k views

/signalr/hubs not loading in asp.net mvc4: Throws 404

Here is what I did. I used nuget to get the SignalR for my MVC4 project. Created a MyHub class in my controller (SignalRTestController.cs) In the Index Action, tried to broadcast a message from ...
10
votes
4answers
3k views

Missing Single Page Application template in MVC4 RC

When I installed MVC4 beta on a development PC, it had a template for SPA (Single Page Application). Today on a different PC with the same setup (VS2010 SP1, win7), I installed MVC4 RC but no longer ...
10
votes
1answer
9k views

MVC4: Two radio buttons for a single boolean model property

I'm attempting to find the correct Razor syntax for mutually exclusive radio buttons that both reflect the value of a boolean property on my model. My model has this: public bool IsFemale{ get; set; ...
10
votes
1answer
2k views

Mixing Web Api and ASP.Net MVC Pages in One Project

How do I mix Web API and ASP.Net MVC pages in one project? For instance, I have model User. I would like, within the same project, to have an ApiController that would respond to all the HTTP verbs ...
10
votes
1answer
14k views

Format datetime in asp.net mvc 4

How can I force the format of datetime in asp.net mvc 4 ? In display mode it shows as I want but in edit model it doesn't. I am using displayfor and editorfor and applyformatineditmode=true with ...
10
votes
3answers
4k views

Hosting for MVC4 projects

I tried searching for a hosting company that would support MVC4 but I couldn't find any - I would like to deploy my MVC4 application online but I do not know a hosting company with good prices. Could ...
10
votes
2answers
1k views

Configuration error while using Areas in ASP.NET MVC 4

After upgrading to ASP.NET MVC 4, application is breaking on accessing any webpage defined inside an Area Description: An error occurred during the processing of a configuration file required to ...
10
votes
2answers
2k views

How to upload bundled and minified files to Windows Azure CDN

I'm using the ASP.NET MVC 4 bundling and minifying features in the Microsoft.AspNet.Web.Optimization namespace (e.g. @Styles.Render("~/content/static/css")). I'd like to use it in combination with a ...
10
votes
1answer
4k views

ASP.NET MVC 4 app with bundling and minification, why is minification enabled in debug mode?

I've just migrated an ASP.NET MVC 3 project to MVC 4 / .NET 4.0, and installed NuGet package Microsoft.AspNet.Web.Optimization in order to support bundling and minification of CSS and JavaScript. I've ...
10
votes
5answers
3k views

MVC4 Razor confused about braces

I've got a fairly simple question for all the Razor experts out there. I'm trying to make a jQuery $.ajax() call to a URL, using Url.Content() to translate the home-relative path into an ...
10
votes
2answers
4k views

ResolveBundleUrl not resolving all files?

I am new to MVC so thought I would start a new project and try out some of the new features in MVC4. I have two css files in my Content directory, normalise_mini and site.css. When I use the following ...
10
votes
2answers
2k views

how to set up elmah with aspnet mvc 4 web api

I've tried many elmah nuggets but they didn't work with aspnet mvc 4 web api. Does anybody knows why? Is there any work around for that? Thanks
10
votes
4answers
2k views

How do I set the default namespaces in MapHttpRoute?

With the standard MapRoute method a can pass a string collection representing the namespaces in which to search for my controller. This seems to have disappeared from MapHttpRoute. How does one define ...
10
votes
2answers
1k views

dotless engine parser returns empty string

ASP.Net MVC4 + Bootstrap (LESS) + dotLess. Goal is to transform the Bootstrap .less files into a single bundle of .css, and I'm running into showstopper issues. Bundle.config var bootstrapStyles = ...
10
votes
3answers
730 views

“routes.LowercaseUrls = true;” does not work?

I'm having trouble in setting my routes to lowercase by default. For some reason it does not work. I know I can set authorize and home to lowercase myself, but the Admin part (area) will still be ...
10
votes
1answer
2k views

ASP.NET MVC 4 and ExtensionlessUrlHandler

I use VS 2012 and created two application: Application#1. MVC 3, NET 4.5 Application#2. MVC 4, NET 4.5 If I compare web.config of these applications, I see the app#2 (MVC 4) has the following ...
10
votes
1answer
431 views

Adding oAuth to Existing ASP.NET MVC 4 Site With Existing Membership Database

Running Visual Studio 2012 - I've looked at the new oAuth template and the default database it creates when you first run the site. Anyone know of a tutorial on how to integrate all of these oAuth ...
10
votes
1answer
302 views

How can I configure Upshot to make partial updates of a ViewModel back to the server?

I have created a Single Page Application (ASP.NET MVC4) using Steven Sanderson's instructions. The issue I'm currently seeing is that whenever I edit an item and save the changes, Upshot sends the ...
9
votes
1answer
3k views

Revalidating a modified ViewModel within a controller method?

EDIT - We're using MVC4 Dev Preview.... I'm implementing an edit page for a FishingTrip class. FishingTrip contains a child collection of simple Crew objects (i.e. FishingTripID, CrewID, ...
9
votes
5answers
5k views

No connection string named 'MyEntities' could be found in the application config file

I am using entity framework and ASP.NET MVC 4 to build an application My solution is split into two projects; A class library that includes my data model (.edmx) file and a few custom interfaces ...
9
votes
3answers
3k views

mvc 4 assembly reference missing for Json.Encode

I am trying to do a Json.Encode in MVC 4 and I'm getting an error: "The name 'Json' does not exist in the current context." I've tried adding System.Runtime.Serialization, which has Json, but this ...
9
votes
1answer
1k views

How to return raw string with ApiController?

I have an ApiController that serves XML/JSON, but I would like one of my actions to return pure HTML. I tried the below but it still return XML/JSON. public string Get() { return ...
9
votes
2answers
3k views

ASP.NET MVC 4 intercept all incoming requests

Is there a way for me to catch all incoming requests to my ASP.NET MVC 4 app and run some code before continuing the request onward to the specified controller/action? I need to run some custom auth ...
9
votes
4answers
10k views

visual studio 2012 RC Could not load type System.Web.Http.RouteParameter

I had VS 11 Beta, .net 4.5 and MVC 4 beta installed on my PC. I just downloaded the latest RC and now I get this error message when I try to run web projects. I tried reinstalling .net 4.5 and ...
9
votes
4answers
5k views

Autofac MVC Integration with ASP.Net MVC 4

I am starting a new project in ASP.Net MVC 4 and I was wondering if it was possible to use Autofac MVC3 Integration with a MVC 4 project?
9
votes
2answers
2k views

ASP.NET MVC 4: cannot modify jQuery Unobtrusive Ajax

Using ASP.NET MVC 4 and NuGet to manage packages. After upgrading to jQuery 1.9.1 via NuGet, I began getting JavaScript errors regarding the removal of the live() function in jQuery 1.9.x. I hit F5 ...
9
votes
1answer
5k views

Api controller declaring more than one Get statement

Using the new Api Controller in MVC4, and I've found a problem. If I have the following methods: public IEnumberable<string> GetAll() public IEnumberable<string> GetSpecific(int i) ...
9
votes
4answers
902 views

Visual Studio shows “Updating source control status” after installing ASP.NET MVC 4 Beta

After installing ASP.NET MVC 4 Beta, Visual Studio shows "Updating source control status" on the lower left side of the status area. Any ideas? Seems a lot of stuff is broken after installing the ...
9
votes
1answer
6k views

How to make custom error pages work in ASP.NET MVC 4

I want a custom error page shown for 500, 404 and 403. Here's what I have done: 1) Enabled custom errors in the web.config as follows: <customErrors mode="On" ...
9
votes
2answers
5k views

JQuery After Body ASP .NET MVC 4

I just created an ASP .NET MVC 4 WebAPI project. In looking at the default _Layout.cshtml, I see that the jquery script is being inserted after the body is rendered (not in the head). <!DOCTYPE ...
9
votes
1answer
2k views

MVC4 - ContextDependentView - What does it mean?

I have just started using MVC4 and the first action method that I look at has something new. I checked out the internet and can't find anything about this: public ActionResult LogOn() { ...
9
votes
3answers
4k views

Structuremap does not work on MVC4

I've used StructureMap in MVC2/3 many times without any concern, but I guess handling IoC is different in MVC4. When i used StructureMap for handling IoC in MVC4 I get the following exception.: No ...

1 2 3 4 5 216