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

102
votes
5answers
49k views

How to add reference to System.Web.Optimization for MVC-3-converted-to-4 app

I'm trying to use the new bundling feature in a project I recently converted from MVC 3 to MVC 4 beta. It requires a line of code in global.asax, BundleTable.Bundles.RegisterTemplateBundles();, which ...
80
votes
4answers
12k views

Bundler not including .min files

I have a weird issue with the mvc4 bundler not including files with extension .min.js In my BundleConfig class, I declare public static void RegisterBundles(BundleCollection bundles) { ...
64
votes
2answers
15k views

Styles.Render in MVC4

In a .NET MVC4 project how does @Styles.Render works? I mean, in @Styles.Render("~/Content/css") which file is it calling? I dont have a file or a folder called "css" inside my Content folder.
60
votes
10answers
15k views

JSONP with ASP.NET Web API

I am working on creating a new set of services in ASP.MVC MVC 4 using the Web API. So far, it's great. I have created the service and gotten it to work, and now I am trying to consume it using ...
56
votes
6answers
2k views

How to “warm-up” Entity Framework? When does it get “cold”?

No, the answer to my second question is not the winter. Preface: I've been doing a lot of research on Entity Framework recently and something that keeps bothering me is its performance when the ...
55
votes
7answers
12k views

MVC4 StyleBundle not resolving images

My question is similar to this: ASP.NET MVC 4 Minification & Background Images Except that I want to stick with MVC's own bundling if I can. I'm having a brain crash trying to figure out ...
53
votes
2answers
11k views

ASP.NET Web API Authentication

I'm really depressed by googling a lot on Web API authentication. I need to know how to authenticate a user from a client application while using ASP.NET Web API. I have seen all the videos on its ...
48
votes
4answers
18k views

Where can I find Upshot.js examples and documentation?

Steve Sanderson gave a very interesting presentations at Techdays 2012 in the Netherlands. In one of them he presented a library that he used for client-server communication in MVC application: ...
45
votes
2answers
1k views

How could I make my RavenDB application execute properly when UseEmbeddedHttpServer is set to true using 2-tier architecture?

I used RavenDB-Embedded 2.0.2230 in my application interacted with ASP .Net Web API in different assemblies. When I set UseEmbeddedHttpServer = true on the document store, first time I send a request ...
40
votes
8answers
7k views

InvalidCastException is thrown after installing ASP.NET MVC 4 Beta

I get the following exception after installing ASP.NET MVC 4 Beta on a machine with ASP.NET MVC 3. System.InvalidCastException was unhandled by user code ...
38
votes
3answers
6k views

MVC 4 Beta side by side installation error

I just installed the MVC 4 Beta now my MVC 3 application does not compile with the following error: The type 'System.Web.Mvc.ModelClientValidationRule' exists in both 'c:\Program Files ...
38
votes
1answer
5k views

What is the _references.js used for?

What is the _references.js file used for in a new ASP.NET MVC 4 project?
35
votes
2answers
10k views

ASP.NET MVC Razor Concatenation

I'm trying the render an HTML list that looks like the following, using the Razor view engine: <ul> <li id="item_1">Item 1</li> <li id="item_2">Item 2</li> ...
35
votes
4answers
14k views

Mvc 4 vs. Wcf Web Api

What are the pros and cons of using each technology? WCF Web Api is now merged into Asp.net Asp.net web api now supports self hosting. I still imagine if I want to expose multiple protocol schemas ...
33
votes
6answers
10k views

Roadmap for ASP.NET MVC 4? [closed]

ASP.NET MVC development has been very fast during the past 2 years. However, even though the RTM version of ASP.NET MVC 3 has been released, there doesn't seem to be any roadmap for the next releases. ...
32
votes
2answers
5k views

Why is MVC4 using the Service Locator Anti-Pattern?

After reading "Dependency Injection in .NET" by Mark Seemann I stay away from the Service Locator which is an anti-pattern. Upon reading the release notes on MVC 4 I see: Improved Inversion of ...
32
votes
1answer
14k views

Why use @Scripts.Render(“~/bundles/jquery”)

How does @Scripts.Render("~/bundles/jquery") differ from just referencing the script from html (ie <script src="~/bundles/jquery.js" type="text/javascript"></script>)? Are there any ...
32
votes
1answer
7k views

Unit Testing ASP.Net MVC 4 apps thoroughly

I realize this is a duplicate of about 20 different posts, but none of them are specific to MVC4, and none that I've seen really answer all of my questions. So far my first foray into the world of TDD ...
28
votes
2answers
19k views

Role based authentication in the new MVC 4 Internet template using simplemembership

I like the new simplemembership feature in MVC 4 internet template with links to OAuth for external logins in VS 2012 RTM. For the most part authentication feature are working. However even after ...
28
votes
2answers
9k views

How to create ASP.NET Web API Url?

In ASP.NET MVC, we have @Url.Action for actions. Is there something similar like @Url.Api which would route to /api/controller?
26
votes
8answers
7k views

MVC4 Less Bundle @import Directory

I'm trying to use MVC4 bundling to group some of my less files, but it looks like the import path I'm using is off. My directory structure is: static/ less/ mixins.less admin/ ...
25
votes
5answers
13k views

Post parameter is always null

Since upgrading to RC for WebAPI I'm having some real odd issue when calling POST on my WebAPI. I've even gone back to the basic version generated on new project. So: public void Post(string value) { ...
24
votes
1answer
534 views

Why is my hidden input writing: value=“value” instead of true/false?

I have an MVC4 site, with (as part of a hidden form): <input name="somefield" type="hidden" value="@ViewBag.Test"/> The value of ViewBag.Test is true. The form field is posting to an input ...
24
votes
2answers
5k views

ASP.NET MVC 4 Mobile Features

I'm trying out the new ASP.NET MVC 4 Mobile Features. I made a simple app with just one controller (HomeController) and one view (Index). I also added a mobile version of the index view. ...
23
votes
5answers
9k views

New MVC certification 70-486

i was wondering if anyone had done the exam 70-486 or know if there are any materials available for help with studying. It is a fairly new exam been out a month, and there seems to be few resources ...
23
votes
6answers
13k views

Single controller with multiple GET methods in ASP.NET Web API

In WCF Web API I had a class of similar structure: public class SomeController : ApiController { [WebGet(UriTemplate = "{itemSource}/Items")] public SomeValue GetItems(CustomParam parameter) ...
23
votes
3answers
8k views

How to add Web API to an existing ASP.NET MVC 4 Web Application project?

I wish to add an ASP.NET Web API to an ASP.NET MVC 4 Web Application project, developed in Visual Studio 2012. Which steps must I perform to add a functioning Web API to the project? I'm aware that I ...
22
votes
4answers
11k views

MVC4 HTTP Error 403.14 - Forbidden

I have build a .net4.5 ASP.NET MVC4 web app which works fine locally (IIS Express & dev server) but once i deploy it to my web server it throws the 403 error. I have installed .Net 4.5RC on the ...
22
votes
4answers
10k views

Whats the difference between WCF Web API and ASP.NET Web API

Ive done a bit of work in the past using WCF WebAPI and really liked a lot of its features, Im just playing with ASP.NET Web API at the moment and it seems completely different (IE completely removed ...
21
votes
3answers
8k views

Custom method names in ASP.NET Web API

I'm converting from the WCF Web API to the new ASP.NET MVC 4 Web API. I have a UsersController, and I want to have a method named Authenticate. I see examples of how to do GetAll, GetOne, Post, and ...
21
votes
12answers
5k views

Upgrading WebGrease to version 1.3.0 gets me error

While upgrading WebGrease to version 1.3.0 gets me error: Could not load file or assembly 'WebGrease, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. ...
21
votes
3answers
9k views

Converting a ASP.NET MVC 3 Project to MVC 4

What steps should I take to safely upgrade an existing ASP.NET MVC 3 project to the latest ASP.NET MVC 4 Developer Preview?
20
votes
4answers
7k views

ASP.NET Web API binding with ninject

I have just installed the mvc4 rc update and I am trying to build an api application with little luck. I am using ninject but cant get my controllers to load. I keep getting an error Type ...
20
votes
3answers
2k views

Can I install ravendb client alongside Microsoft.AspNet.WebApi.Client?

I'm trying an ASP.NET MVC4 Web API project. I'm trying to install the ravendb client through nuget. This is the error: Attempting to resolve dependency 'NLog (= 2.0.0.2000)'. Successfully installed ...
19
votes
2answers
9k views

Why does ResolveBundleUrl not work for custom folders? (MVC Beta 4)

From a brand-new ASP.NET MVC 4 Beta Web Application, I'm re-arranging my folders to match Rob Conery's VidPub.Web example Specifically, this means that the final directory structure for content looks ...
19
votes
4answers
10k views

MVC4 DataType.Date EditorFor won't display date value in Chrome, fine in IE

I'm using the DataType.Date attribute on my model and an EditorFor in my view. This is working fine in IE8/9, but in Chrome it is showing a date picker and instead of displaying the value just ...
19
votes
3answers
11k views

How To Accept a File POST - ASP.Net MVC 4 WebAPI

I'm using asp.net mvc 4 webapi beta to build a rest service. I need to be able to accept POSTed images/files from client applications. Is this possible using the webapi? Below is how action I am ...
18
votes
3answers
8k views

Entity Framework Code-First Issues (SimpleMembership UserProfile table)

If you've used ASP.NET MVC 4 you'll notice that the default for an Internet Application is to use the SimpleMembership provider, this is all well and good and works fine. The issue comes with the ...
18
votes
3answers
5k views

ASP.NET MVC framework 4.5 CSS bundles does not work on the hosting

I am runing an App on app harbor written in MVC4. A bundle of css files doesnt work. In my local computer in debug mode I see the code of the App and I see the files. The App Works as expected. ...
18
votes
3answers
6k views

Migrating from ASP.NET Membership to SimpleMembership in MVC4 RTM

The new MVC4 RTM internet application templates use the SimpleMembership providers as descibed here SimpleMembership My existing MVC website uses the ASP.Membership framework and ideally I would like ...
18
votes
3answers
4k views

How to force BundleCollection to flush cached script bundles in MVC4

... or how I learned to stop worrying and just write code against completely undocumented APIs from Microsoft. Is there any actual documentation of the official System.Web.Optimization release? 'cuz I ...
18
votes
5answers
4k views

ASP.NET MVC 4 Mobile Display Modes Stop Working

Mobile display modes in ASP.NET MVC 4 stop serving the correct views after about an hour of uptime, despite browser overrides correctly detecting an overridden mobile device. Recycling the ...
18
votes
1answer
361 views

ModelBinding with Steve Sandersons BeginCollectionItem

I'm using Steve Sandersons BeginCollectionItem extension to help with binding lists of items. This works fine for primitive types. The problem I'm having is that for a custom model binder that I've ...
17
votes
4answers
13k views

asp.net 4.5 custom membership provider configuration throws strange exception [duplicate]

My web site was initially written in MVC 4.0 RC using VS2010, . I have just downloaded and installed VS2012, and upgraded my project to Dotnet Framework 4.5. In my project I'm using a Custom ...
17
votes
2answers
4k views

Can I access IIdentity from Web API

I'm adding some Web API services to an existing MVC application. I have a model binder for my MVC controllers to get the user object stored in a CustomIdentity. I'm trying to reproduce this for my ...
17
votes
3answers
11k views

How to create custom additional fields in UserProfile in MVC4

I faced with new ASP MVC 4 feature, it shipped with new membership db schema and new initialization. In mvc 3 and old versions developer able to create custom user profile fields using specifications ...
17
votes
2answers
5k views

How to add global ASP.Net Web Api Filters?

I've created a Web Api filter (using System.Web.Http.Filters.ActionFilterAttribute) but I am unable to get it to work inside of ASP.Net MVC 4. I tried adding it to the RegisterGlobalFilters() method ...
17
votes
1answer
7k views

Asp.net mvc 4 on iis6: “The page cannot be found”

I am having trouble getting ASP.Net MVC 4 running on IIS 6. First, i got "Directory listing denied" and that already solved after I setup extensionless urls based on Phil Haack's blog post: ASP.NET ...
17
votes
1answer
6k views

AntiForgeryToken deprecated in ASP.Net MVC 4 RC

I just installed ASP.Net MVC 4 RC to replace ASP.Net MVC 4 beta. When trying to run an existing application I'm getting an error message that AntiForgeryToken has been deprecated. Here's my code: ...
17
votes
4answers
3k views

Cassette bundles vs MVC4 bundles

I am currently working on a prototype ASP.NET MVC 3 solution that will be used as a base for several project rewrites (from web forms). One of the goals that I have is to implement some script ...

1 2 3 4 5 193