ASP.NET MVC 4 is the fourth major version of the ASP.NET Model-View-Controller platform for web applications.
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 ...
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)
{
...
0
votes
1answer
352 views
Jquery dialog partial view server side validation on Save button click
I have a table that displays data. Each row of table has Edit button. When edit button is clicked a jquery dialog appears with Form for editing the user info and save and cancel button . The form is ...
10
votes
4answers
5k views
ASP.NET Web API returns 404 for PUT only on some servers
(cross post from Server Fault. I realised afterwards that I probably should have asked on stackoverflow first)
Ok, I have been racking my brain and the internet for a solution to this. I just can't ...
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 ...
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 ...
22
votes
6answers
12k 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) ...
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 ...
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 ...
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 ...
98
votes
5answers
47k 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 ...
15
votes
3answers
8k views
How do I manage profiles using SimpleMembership?
I have an ASP.NET MVC 4 site based off the internet template. I am using the SimpleMembership which i set up with that template.
I can modify the Users table which has been creted for me but I am ...
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 ...
10
votes
1answer
6k views
Issue using ASP.Net MVC 4 Web API with Ninject.Web.WebApi
I'm trying to use the new ASP.Net MVC 4 Web API project template with Ninject but have hit a wall on the following error:
Method 'GetFilters' in type ...
11
votes
6answers
7k views
MVC4 Scaffolding Add Controller gives error “Unable to retrieve metadata…”
I'm using RTM version of Windows 8 and VS 2012 Ultimate. I have a MVC4 project using SqlCe 4.0 with a code first entity framework model.
Model is very simple:
public class MyThing
{
...
7
votes
2answers
8k views
Custom MVC AuthorizeAttribute for ASP.NET Web API
I am trying to implement a custom authorization attribute on my Web API controllers, but came across an unexpected behavior.
<Authorize(Users:="myUser")>
Public Function ...
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 ...
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 ...
4
votes
6answers
2k views
How can I use cshtml files with Durandal?
I got the DurandalJS StarterKit template on VS2012... All works great...
But in some views I need to do something like that:
@if (Roles.IsUserInRole("Administrators"))
{
<p>Test</p>
}
...
16
votes
4answers
12k views
Could not load file or assembly 'System.Net.Http, Version=2.0.0.0 in MVC4 Web API
I have a bit of a wired problem.
I developed an app with MVC 4 and the new Web API and it works fine locally.
I installed MVC4 on the server and deployed the app. Now I get the following error:
...
4
votes
2answers
1k views
Enabling Facebook Breaking Changes Feb 2013: login Does Not Work
I am working on phonegap with ios and using facebook login.
but on feb 6, its giving errors to users while login to facebook.
When logging into the app using Facebook - the dialog shows this message: ...
2
votes
1answer
2k views
WebApi Json.NET custom date handling
I have globally explicitly configured my MVC4 app to use the JSON.NET serializer . I know i have the choice of using the ISO standard dates or the old Microsoft date format when serializing dates.
...
2
votes
5answers
5k views
Best practice on passing Mvc Model to KnockoutJS
I googled around on how to pass mvc model to knockoutjs and it seems there are two ways:
Using @Html.Raw(Json.Encode(Model))
Using $.get or $.ajax
Which of the ways is a best practice of passing ...
7
votes
2answers
3k views
Upgrading to MVC4 RC: No MediaTypeFormatter is available to read an object of type 'TestRequestModel' from content with media type ''undefined''
I've been using the MVC4 beta and am currently working to upgrade to the recently released RC version.
It appears that model-binding complex request types has changed, but I can't figure out how / ...
5
votes
4answers
1k views
Why is Html.Raw escaping ampersand in anchor tag in ASP.NET MVC 4?
I have a URL I would like to render in an anchor tag as-is in a Razor view. I would have thought Html.Raw would be the way to go:
@{
string test = ...
2
votes
1answer
1k views
URL encoded colon resolves in 400 Bad Request
Why does this url resolve in 400 - Bad Request?
http://localhost:2785/api/ticker/Web.App.QuotesReaders/search=se%3Aabb
My environment is Visual Studio 2010, MVC 4 and the controller used is a ...
0
votes
3answers
2k views
How do I register a controller that has been created in an AREA
I am using MVC4's WEB API to expose a controller.
Initially I created created a MVC4 WEBAPI project, set the project not to open any web page, wait for an external app to call the URL (WEB API). The ...
54
votes
7answers
11k 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 ...
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 ...
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 ...
7
votes
2answers
5k views
Problems implementing ValidatingAntiForgeryToken attribute for Web API with MVC 4 RC
I'm making JSON-based AJAX requests and, with MVC controllers have been very grateful to Phil Haack for his Preventing CSRF with AJAX and, Johan Driessen's Updated Anti-XSRF for MVC 4 RC. But, as I ...
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?
19
votes
4answers
9k 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 ...
24
votes
2answers
4k 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.
...
12
votes
4answers
9k views
SimpleMembershipProvider not working
I started a new internet project with VS2012 and am trying to just restructure my project a bit and I can't seem to keep the SimpleMemberhsipProvider working. Basically, all I've done is move the ...
9
votes
2answers
3k 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 ...
7
votes
2answers
3k views
MVC4 WebApi compress Get Method Response
I am currently working on migrating few of my MVC3 Controllers to MVC4 Api Controllers.
I have implemented Compression mechanism for MVC3 controller Get Method Responses by inherting ...
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 ...
14
votes
3answers
3k views
Why does ASP.NET MVC 4 have so many NuGet packages and which are truly important?
As the title says, why do the ASP.NET MVC 4 projects have soooo many NuGet packages? Is the entire framework split into packages now? Which ones are truly important for an empty project that will be a ...
13
votes
3answers
6k views
How can I specify an explicit ScriptBundle include order?
I'm trying out the MVC4 System.Web.Optimization 1.0 ScriptBundle feature.
I have the following configuration:
public class BundleConfig
{
public static void RegisterBundles(BundleCollection ...
8
votes
3answers
2k views
Unable to authenticate to ASP.NET Web Api service with HttpClient
I have an ASP.NET Web API service that runs on a web server with Windows Authentication enabled.
I have a client site built on MVC4 that runs in a different site on the same web server that uses the ...
21
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 ...
15
votes
7answers
10k views
aspnet_compiler finding wrong version of System.Web.WebPages 1.0.0.0 instead of 2.0.0.0
I have an ASP.NET MVC4 project which compiles fine in VS2010. For deployment purposes I run a Nant script which attempts to precompile the website using aspnet_compiler.exe but I keep running into an ...
12
votes
8answers
7k views
How to disable Javascript/CSS minification in ASP.NET MVC 4 Beta
I am just trying out ASP.NET MVC 4 but I can't figure out how to disable Javascript/CSS minification feature. Especially for development environment this will help greatly on debugging. I would ...
9
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 ...
11
votes
3answers
2k views
ASP.NET MVC 4 + Ninject MVC 3 = No parameterless constructor defined for this object
Before we start, I know this is a very common question and I've been using Ninject for many moons without issues, but now it's come up and I can't figure out a fix. Also, no, none of the results on ...
9
votes
1answer
4k 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)
...
6
votes
4answers
7k views
Output caching for an ApiController (MVC4 Web API)
I'm trying to cache the output of an ApiController method in MVC4 Web API.
Here's the controller code:
using System.Web.Http;
using System.Web.Mvc;
using System.Web.UI;
public class TestController ...
6
votes
3answers
12k views
How do I create a MVC3 razor template for DisplayFor()
I have a couple of properties in my view model that are display-only but I need to retrieve their values using jQuery to perform a calculation on the page. The standard Html.DisplayFor() method just ...
4
votes
3answers
8k views
MVC 4 WebAPI controllers splitted by Areas [duplicate]
Possible Duplicate:
How do I register a controller that has been created in an AREA
I have the question - is it possible to do the next?
I have three Areas:
_Default
SiteOne
SiteTwo
...