The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern.
283
votes
25answers
94k views
How to format a JSON date?
I'm taking my first crack at Ajax with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON data that is returned for Date data types. Basically, I'm getting a string ...
235
votes
6answers
29k views
How to get ELMAH to work with ASP.NET MVC [HandleError] attribute?
I am trying to use ELMAH to log errors in my ASP.NET MVC application, however when I use the [HandleError] attribute on my controllers ELMAH doesn't log any errors when they occur.
As I am guessing ...
207
votes
16answers
110k views
A potentially dangerous Request.Form value was detected from the client
Everytime a user posts something containing < or > in a page in my webapp, I get this exception thrown.
I don't want to go into the discussion about the smartness of throwing an exception or ...
185
votes
21answers
10k views
Abuse of C# lambda expressions or Syntax brilliance?
I am looking at the MvcContrib Grid component and I'm fascinated, yet at the same time repulsed, by a syntactic trick used in the Grid syntax:
.Attributes(style => "width:100%")
The syntax ...
180
votes
40answers
13k views
Why does the ASP.Net Web Forms model “suck”? [closed]
I've heard Jeff Atwood, Joel Spolsky, and many other legendary people talk about how the ASP.NET Web Forms model sucks (so this question is kind of directed to them, hopefully Jeff is reading).
Now, ...
172
votes
19answers
45k views
NUnit vs Visual Studio 2008's Test Projects for Unit Testing?
I am going to be starting up a new project at work and want to get into unit testing. We will be using VS 2008, C#, and the ASP.NET MVC stuff. I am looking at using either NUnit or the built in test ...
161
votes
12answers
15k views
ASP.NET MVC Best Practices, Tips and Tricks [closed]
Please, share your ideas which could serve as best practices or guidelines for creating ASP.NET MVC web applications. These ideas and/or coding samples should be relevant to ASP.NET MVC application ...
136
votes
7answers
24k views
ASP.NET MVC View Engine Comparison
EDIT: added a community wiki answer to begin capturing people's experience with various View Engines. Please respectfully add any experiences you've had.
I've been searching on SO & Google for ...
133
votes
18answers
79k views
How to handle checkboxes in ASP.NET MVC forms?
This seems a bit bizarre to me, but as far as I can tell, this is how you do it.
I have a collection of objects, and I want users to select one or more of them. This says to me "form with ...
132
votes
8answers
22k views
How can I properly handle 404 in ASP.NET MVC?
I am just getting started on ASP.NET MVC so bear with me. I've searched around this site and various others and have seen a few implementations of this.
EDIT: I forgot to mention I am using RC2
...
131
votes
6answers
16k views
Compile Views in ASP.NET MVC
I want an msbuild task to compile the views so I can see if there are compile time errors at well... compile time. Any ideas?
113
votes
17answers
48k views
How do you handle multiple submit buttons in ASP.NET MVC Framework?
Is there some easy way to handle multiple submit buttons from the same form? Example:
<% Html.BeginForm("MyAction", "MyController", FormMethod.Post); %>
<input type="submit" value="Send" ...
113
votes
24answers
12k views
Does anyone beside me just NOT get ASP.NET MVC? [closed]
I've been fiddling with ASP.NET MVC since the CTP, and I like a lot of things they did, but there are things I just don't get.
For example, I downloaded beta1, and I'm putting together a little ...
99
votes
13answers
33k views
Can an ASP.Net MVC controller return an Image?
Can I create a Controller that simply returns an image asset?
I would like to route this logic through a controller, whenever a url such as the following is requested:
...
99
votes
21answers
39k views
Biggest advantage to using ASP.Net MVC vs web forms [closed]
What are some of the advantages of using one over the other?
86
votes
13answers
19k views
Render a view as a string
I'm wanting to output two different views (one as a string that will be sent as an email), and the other the page displayed to a user.
Is this possible in ASP.NET MVC beta?
I've tried multiple ...
84
votes
18answers
24k views
How do you create a dropdownlist from an enum in ASP.NET MVC?
I'm trying to use the Html.DropDownList extension method but can't figure out how to use it with an enumeration.
Let's say I have an enumeration like this:
public enum ItemTypes
{
Movie = 1,
...
80
votes
9answers
29k views
How can I return the current action in an ASP.NET MVC view?
I wanted to set a css class in my master page depending on the current controller and action. I can get to the current controller via ViewContext.Controller.GetType().Name, but how do I get the ...
74
votes
6answers
11k views
Is it possible to make an ASP.NET MVC route based on a subdomain?
Is it possible to have an ASP.NET MVC route that uses subdomain information to determine its route? For example:
user1.domain.com goes to one place
user2.domain.com goes to another?
Or, can I ...
73
votes
13answers
34k views
grid controls for ASP.NET MVC?
If you are using ASP.NET MVC how are you doing grid display?
Rolled your own?
Got a library from somewhere?
These are some of the known grid display solutions I have found for ASP.NET MVC
ASP.NET ...
72
votes
23answers
8k views
ASP.NET MVC - Is it worth it yet? [closed]
For any of you that have used ASP.NET MVC (especially the Stack Overflow team), do you think it's worth taking the plunge with a technology that's still in "Preview" releases, not even Beta yet? From ...
68
votes
3answers
18k views
ASP.NET MVC - Set custom IIdentity or IPrincipal
I need to do something fairly simple: in my ASP.NET MVC application, I want to set a custom IIdentity / IPrincipal. Whichever is easier / more suitable. I want to extend the default so that I can call ...
67
votes
18answers
18k views
Best ASP.NET MVC book? [closed]
I'm going to be starting a new project with VS2008/ASP.NET, and I would like to use MVC.
What is the best MVC book out there? (Are there any good ones?)
Edit: I threw in the asp.net-mvc-2 tag so we ...
66
votes
8answers
13k views
RSS Feeds in ASP.NET MVC
How would you reccommend handling RSS Feeds in ASP.NET MVC? Using a third party library? Using the RSS stuff in the BCL? Just making an RSS view that renders the XML? Or something completely ...
65
votes
22answers
25k views
Ideas for OpenSource CMS in ASP.NET MVC
I am in the process of collecting ideas for building an open-source CMS based on the ASP.NET framework.
I have chosen ASP.NET MVC with jQuery as the tool to develop this.
I have made this as ...
65
votes
8answers
23k views
How to localize ASP.NET MVC application?
What would be best practice to localize your ASP.NET MVC application?
I would like to cover two situations:
one application deployment in IIS which would handle multiple languages
one ...
65
votes
9answers
17k views
Passing data to Master Page in ASP.NET MVC
What is your way of passing data to Master Page (using ASP.NET MVC) without breaking MVC rules?
Personally, I prefer to code abstract controller (base controller) or base class which is passed to all ...
64
votes
10answers
13k views
ViewModel Best Practices
From this question, it looks like it makes sense to have a controller create a ViewModel that more accurately reflects the model that the view is trying to display, but I'm curious about some of the ...
64
votes
4answers
5k views
Best way to implement request throttling in ASP.NET MVC?
We're experimenting with various ways to throttle user actions in a given time period:
Limit question/answer posts
Limit edits
Limit feed retrievals
For the time being, we're using the Cache to ...
63
votes
2answers
4k views
MVC and Umbraco integration
I've followed the steps from http://memoryleak.me.uk/2009/04/umbraco-and-aspnet-mvc.html and integrated MVC in Umbraco with success, but i still have a problem which is critical for me.
Is there any ...
62
votes
2answers
10k views
ASP.NET MVC 3 - Partial vs Display Template vs Editor Template
So, the title should speak for itself.
To create re-usable components in ASP.NET MVC, we have 3 options (could be others i haven't mentioned):
Partial View:
@Html.Partial(Model.Foo, "SomePartial")
...
62
votes
4answers
11k views
Serving favicon.ico in ASP.NET MVC
What is the final/best recommendation for how to serve favicon.ico in ASP.NET MVC?
I am currently doing the following :
Adding an entry to the very beginning of my RegisterRoutes method :
...
62
votes
6answers
16k views
Can you overload controller methods in ASP.Net MVC?
Im curious to see if you can overload controller methods in ASP.Net MVC. Whenever I try, I get the error below. The two methods accept different arguements. Is this something that cannot be done?
...
62
votes
7answers
38k views
How to RedirectToAction in ASP.NET MVC without losing request data
Using ASP.NET MVC there are situations (such as form submission) that may require a RedirectToAction.
One such situation is when you encounter validation errors after a form submission and need to ...
61
votes
4answers
39k views
ASP.NET MVC HandleError
How do I go about the [HandleError] filter in asp.net MVC Preview 5?
I set the customErrors in my Web.config file
<customErrors mode="On" defaultRedirect="Error.aspx">
<error ...
60
votes
3answers
10k views
Html.Partial vs Html.RenderPartial & Html.Action vs Html.RenderAction
What is difference between Html.Partial and Html.RenderPartial in asp.net mvc?
also What is difference between Html.Action and Html.RenderAction in asp.net mvc?
60
votes
3answers
34k views
Html.BeginForm and adding properties
How would I go about adding enctype="multipart/form-data" to a form that is generated by using <% Html.BeginForm(); %>?
59
votes
9answers
4k views
How To improve ASP.NET MVC Application Performance
How do you improve your ASP.NET MVC application performance?
59
votes
6answers
8k views
ASP.NET MVC Routing Via Method Attributes
In the StackOverflow Podcast #54, Jeff mentions they register their URL routes in the StackOverflow codebase via an attribute above the method that handles the route. Sounds like a good concept (with ...
59
votes
12answers
15k views
ASP.NET MVC Performance
I found some wild remarks that ASP.NET MVC is 30x faster than ASP.NET WebForms. What real performance difference is there, has this been measured and what are the performance benefits.
This is to ...
58
votes
11answers
15k views
Repository Pattern vs DAL
Are they the same thing? Just finished to watch Rob Connery's Storefront tutorial and they seem to be similar techinques. I mean, when I implement a DAL object I have the GetStuff, Add/Delete etc ...
58
votes
7answers
15k views
$.getJSON returning cached data in IE8
Hey all,
I'm playing around with ASP.net MVC and JQuery at the moment. I've come across behavour which doesn't seem to make sense.
I'm calling JQuery's $.getJSON function to populate some div's. ...
57
votes
4answers
10k views
What is an MvcHtmlString and when should I use it?
The documentation for MvcHtmlString is not terribly enlightening:
Represents an HTML-encoded string that should not be encoded again.
It's not clear to me what exactly the implications of this ...
56
votes
10answers
19k views
Can I set an unlimited length for maxJsonLength in web.config?
I am using the autocomplete feature of jQuery. When I try to retrieve the list of more then 17000 records (each won't have more than 10 char length), it's exceeding the length and throws the error:
...
56
votes
8answers
66k views
"Could not load file or assembly 'System.Web.Mvc,
My new ASP.NET MVC Web Application works on my development workstation, but does not run on my web server...
Server Error in '/' Application.
Configuration Error
Description: An error occurred ...
55
votes
5answers
6k views
ASP.NET MVC: Unit testing controllers that use UrlHelper
One of my controllers actions, one that is being called in an Ajax request, is returning an URL to the client side so it can do a redirection. I'm using Url.RouteUrl(..) and during my unit tests this ...
55
votes
2answers
10k views
In MVC, how do I return a string result?
In my ajax call, I want to return a string value back to the calling page.
Do I still using ActionResult or just return a string?
55
votes
2answers
9k views
Difference Between ViewData and TempData?
I know what ViewData is and use it all the time, but in ASP.NET Preview 5 they introduced something new called TempData.
I normally strongly type my ViewData, instead of using the dictionary of ...
54
votes
2answers
13k views
ASP.NET MVC Razor - output HTML string non escaped
How do I show (safe) HTML saved in DB in a Razor view? It always escapes stuff like <.
Thanks in advance
53
votes
15answers
4k views
ASP.NET Model-view-controller (MVC) - where do I start from?
I'd like to understand better the MVC pattern, as I'll be probably using it in the future (my job is mainly focused in developing .Net web apps).
Can I ask to this community to help me find a ...