I am using RC2 Using URL Routing: routes.MapRoute( "Error", "{*url}", new { controller = "Errors", action = "NotFound" } // 404s ); The ...
-
May 6, 2022
- 0 Comments
I am new to ASP.NET MVC. I have a problem with understanding the purpose of a ViewModel. What is a ViewModel and why ...
-
May 4, 2022
- 0 Comments
I want to output two different views (one as a string that will be sent as an email), and the other the page ...
-
May 3, 2022
- 0 Comments
I want to get all the error messages out of the modelState without knowing the key values. Looping through to grab all the ...
-
May 3, 2022
- 0 Comments
I am configuring an MVC 3 project to work on a local install of IIS and came across the following 500 error: Handler ...
-
May 1, 2022
- 0 Comments
I’m at wit’s end. Visual Studio is typically painfully slow to debug or just plain load (“start without debugging”) my ASP.NET MVC sites. ...
-
May 1, 2022
- 0 Comments
I am trying to use ELMAH to log errors in my ASP.NET MVC application, however when I use the [HandleError] attribute on my ...
-
May 1, 2022
- 0 Comments
In my AJAX call, I want to return a string value back to the calling page. Should I use ActionResult or just return ...
-
April 28, 2022
- 0 Comments