OwinStartup not firing
I had the OwinStartup configuration code working perfectly and then it stopped working. Unfortunately I’m not sure exactly what I did to get … Read more
I had the OwinStartup configuration code working perfectly and then it stopped working. Unfortunately I’m not sure exactly what I did to get … Read more
I am using RC2 Using URL Routing: routes.MapRoute( “Error”, “{*url}”, new { controller = “Errors”, action = “NotFound” } // 404s ); The … Read more
I’ve got safe/sanitized HTML saved in a DB table. How can I have this HTML content written out in a Razor view? It … Read more
I am new to ASP.NET MVC. I have a problem with understanding the purpose of a ViewModel. What is a ViewModel and why … Read more
I want to output two different views (one as a string that will be sent as an email), and the other the page … Read more
I want to get all the error messages out of the modelState without knowing the key values. Looping through to grab all the … Read more
I am configuring an MVC 3 project to work on a local install of IIS and came across the following 500 error: Handler … Read more
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. … Read more
I am trying to use ELMAH to log errors in my ASP.NET MVC application, however when I use the [HandleError] attribute on my … Read more
In my AJAX call, I want to return a string value back to the calling page. Should I use ActionResult or just return … Read more