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 ...
206
votes
16answers
109k 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 ...
179
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, ...
130
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
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 ...
111
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" ...
99
votes
13answers
32k 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: ...
98
votes
22answers
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?
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 ...
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 ...
67
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 ...
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
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 ...
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 ...
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 ...
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: ...
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 ...
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 ...
49
votes
9answers
6k views

Using scripts in a master page with ASP.NET MVC

I'm fairly new to ASP.NET MVC, and I'm having a little trouble with scripts... in particular, I want to use jQuery in most pages, so it makes sense to put it in the master page. However, if I do (from ...
47
votes
6answers
14k views

New asp.net charting controls - will they work with MVC (eventually)?

Scott Gu just posted about a new set of charting controls being distributed by the .NET team. They look incredible: ...
47
votes
4answers
9k views

What is the best way to return XML from a controller's action in ASP.NET MVC?

What is the best way to return XML from a controller's action in ASP.NET MVC? There is a nice way to return JSON, but not for XML. Do I really need to route the XML through a View, or should I do ...
46
votes
7answers
15k views

How to assign Profile values?

I don't know what I am missing, but I added Profile properties in the Web.config file but cannot access Profile.Item in the code or create a new profile.
45
votes
6answers
3k views

How to use the repository pattern correctly?

I am wondering how should I be grouping my repositories? Like from the examples I seen on the asp.net mvc and in my books they basically use one repository per database table. But that seems like a ...
44
votes
3answers
21k views

asp.net mvc disable browser cache

I am looking for method to disable Browser Cache for entire ASP.Net MVC Website I found following method, Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache); ...
43
votes
6answers
7k views

What is the proper way to send an HTTP 404 response from an ASP.NET MVC action?

If given the route: {FeedName}/{ItemPermalink} ex: /Blog/Hello-World If the item doesn't exist, I want to return a 404. What is the right way to do this in ASP.NET MVC?
43
votes
22answers
6k views

Should I migrate to ASP.NET MVC?

I just listened to the StackOverflow team's 17th podcast, and they talked so highly of ASP.NET MVC that I decided to check it out. But first, I want to be sure it's worth it. I already created a base ...
42
votes
8answers
12k views

Has anyone implement RadioButtonListFor<T> for ASP.NET MVC?

There was an Html.RadioButtonList extension method in ASP.NET MVC Futures. Has anyone found a code for a strongly typed version RadioButtonListFor<T>. It would look like this in a view: <%= ...
40
votes
30answers
3k views

What's your choice for your next ASP.NET project: Web Forms or MVC?

Let's say that you will start a new ASP.NET web site/application tomorrow. Would you chose Web Forms or MVC, and why?
39
votes
9answers
4k views

ASP.NET MVC 1.0 AfterBuilding Views fails on TFS Build

I've upgraded from ASP.NET MVC Beta to 1.0 and did the following changes to the MVC project (as descibed in the RC release notes): <Project ...> ... ...
39
votes
10answers
10k views

ASP.NET MVC Relative Paths

In my applications, I often have to use relative paths. For example, when I reference JQuery, I usually do so like this: <script type="text/javascript" ...
39
votes
16answers
3k views

What's the best way to implement field validation using ASP.NET MVC?

I am building a public website using ASP.NET, as part of the deliverable I need to do an Admin Site for data entry of the stuff shown in the public site, I was wondering what techniques or procedures ...
38
votes
8answers
13k views

SSL pages under ASP.NET MVC

How do I go about using HTTPS for some of the pages in my ASP.NET MVC based site? Steve Sanderson has a pretty good tutorial on how to do this in a DRY way on Preview 4 at: ...
36
votes
5answers
6k views

Advantage of creating a generic repository vs. specific repository for each object?

We are developing an ASP.NET MVC application, and are now building the repository/service classes. I'm wondering if there are any major advantages to creating a generic IRepository interface that all ...
33
votes
4answers
18k views

How do I create a custom membership provider for ASP.NET MVC 2?

How do I create a custom membership for ASP.NET MVC 2 based on the ASP.NET membership provider?
33
votes
1answer
11k views

What is the difference between classic and integrated in IIS7?

I was deploying an ASP.NET MVC application last night, and found out that it is less work to deploy with IIS7 set to integrated mode. My question is what is the difference? And what are the ...
33
votes
11answers
3k views

From WebForms to ASP.NET MVC

This question is for anyone who has significant experience using ASP.NET WebForms who has made the switch to ASP.NET MVC. What was your business justification for making the switch? Do you consider ...
33
votes
5answers
2k views

IIS 6.0 wildcard mapping benchmarks?

I'm quickly falling in love with ASP.NET MVC beta, and one of the things I've decided I won't sacrifice in deploying to my IIS 6 hosting environment is the extensionless URL. Therefore, I'm weighing ...
31
votes
2answers
11k views

What are the Web.Debug.config and Web.Release.Config files for?

I just upgraded to Visual Studio 2010 and MVC 2.0 and I noticed the Web.config has two additional files attached to it? Are these files used to specify debug and release specific settings, so you ...
30
votes
2answers
502 views

Is IIS performing an illegal character substitution? If so, how to stop it?

Context: ASP.NET MVC running in IIS, with a a UTF-8 %-encoded URL. Using the standard project template, and a test-action in HomeController like: public ActionResult Test(string id) { return ...
30
votes
7answers
8k views

IIS URL Rewriting vs URL Routing

I was planning to use url routing for a Web Forms application. But, after reading some posts, I am not sure if it is an easy approach. Is it better to use the URL Rewrite module for web forms? But, ...
29
votes
4answers
4k views

ASP.NET MVC Razor render without encoding

Razor encodes string by default. Is there any special syntax for rendering without encoding?
28
votes
5answers
8k views

Practical Application of MVC || When to use, or not use MVC

I have seen the ASP.NET community buzzing about MVC. I know the basics of its origin, and that there are many sites (unless I am mistaken, stack overflow itself) based on ASP.NET MVC. From ...
27
votes
4answers
8k views

ASP.NET MVC - Pass Additional ViewData to a Strongly-Typed Partial View

I have a strongly-typed Partial View that takes a ProductImage and when it is rendered I would also like to provide it with some additional ViewData which I create dynamically in the containing page. ...
27
votes
3answers
19k views

ASP.NET MVC URL Routing with Multiple Route Values

I am having trouble with Html.ActionLink when I have a route that takes more than one parameter. For example, given the following routes defined in my Global.asax file: routes.MapRoute( ...
27
votes
2answers
9k views

How do I do pagination in ASP.NET MVC?

What is the most preferred and easiest way to do pagination in ASP.NET MVC? I.e. what is the easiest way to break up a list into several browsable pages. As an example lets say I get a list of ...
27
votes
4answers
6k views

ASP.Net MVC and nUnit

I have nUnit installed. I have VS2008 Team Edition installed. I have ASP.Net MVC Preview 4 (Codeplex) installed. How do I make Visual Studio show me nUnit as a testing framework when creating a new ...
26
votes
8answers
6k views

How would you sprinkle-in ASP.Net MVC into an existing Web Site Project?

I have a legacy (haha) ASP.Net Webforms Web Site Project in Visual Studio 2008 SP1, that I would like to gradually introduce some MVC functionality into. Most of the information I can locate on how ...
25
votes
9answers
4k views

What to learn - Ruby on Rails or ASP .NET MVC…given that am familiar with ASP .NET

I need to learn and adpot the MVC methodology for building web apps. Which is the better way to go given that I have experience with ASP .NET Webforms - ASP .NET MVC or Ruby on Rails? I've heard ...

1 2 3 4 5 120