Questions tagged [asp.net-mvc]

The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern.

The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern. Based on ASP.NET, it allows software developers to build a Web application as a composition of three roles: Model, View and Controller.

A model represents the state of a particular aspect of the application. Frequently, a model maps to a database table with the entries in the table representing the state of the application. A controller handles interactions and updates the model to reflect a change in state of the application, and then passes information to the view. A view accepts necessary information from the controller and renders a user interface to display that.

The latest stable version - MVC 3 - is available from the Microsoft Download Center website.

Latest announcements from Microsoft usually come from Scott Guthrie's blog. Other notable blogs relating to MVC include Phil Haack and Scott Hanselman.

226 questions
6
votes
3 answers

Intermittent high CPU (100%) on production webserver

X-Post from StackOverflow: https://stackoverflow.com/questions/9465123/intermittent-high-cpu-100-on-production-webserver We have a web cluster with 3 web-servers, each with 24 cores & 24GB mem. Our application is latest patched ASP.NET 4.0, With…
Dave
  • 161
  • 1
  • 1
  • 4
6
votes
1 answer

What are the key performance metrics to monitor for a deployed ASP.NET web application?

I have full logging ( using log4net) throughout the application. What are the key WMI variables etc that should be monitored. If you had to pick 10 things that you would look at everyday what would they be and why are they important.
bearrito
  • 380
  • 3
  • 16
5
votes
0 answers

What is optimal IIS threading settings for a Win2012 server that does lots of slower web service calls?

We have a Windows 2012 Server that communicates to lots of other services via SOAP based web services using ASP.Net and .NET 4.5. These services tend to have higher latency (i.e. 2-6 seconds to return). We believe we have threading issues since…
Shane
  • 243
  • 3
  • 7
5
votes
1 answer

IIS 7.5 truncating POST body containing JSON data with ASP.NET MVC 3

I'm facing a problem which I hope is a configuration thing with IIS but is right now giving a lot of trouble. Basically I have a controller that accepts a JSON and does some processing. While it generally works fine, but every now and then when the…
5
votes
0 answers

Creating a seperate static content site for IIS7 and MVC

With reference to this serverfault blog post: A Few Speed Improvements where it talks about how static content for stackexchange is served from a separate cookieless domain... How would someone go about doing this on IIS7.5 for a ASP.NET MVC…
JK01
  • 339
  • 2
  • 7
  • 16
5
votes
2 answers

First Request to IIS Express Fails with 503 Service Unavailable, Second Succeeds

Each time I start my ASP.Net MVC 3 app from Visual Studio 2010, IIS Express launches and IE spins waiting. The request fails with HTTP 503 Service Unavailable. I hit Refresh in IE, and the request succeeds. All subsequent requests succeed until I…
Chris Moschini
  • 469
  • 1
  • 8
  • 16
5
votes
3 answers

Accessing static content of an ASP.Net MVC project with IIS7

I've pointed my local IIS 7 to my local ASP.Net MVC project and everything is working fine except for the static content. Going to http://localhost:8080/Content/Site.css gives me a 404. I can see the folder on IIS Manager. Any ideas what might be…
Pablo Fernandez
  • 7,438
  • 25
  • 71
  • 83
5
votes
1 answer

IIS 7 can't run ASP.NET MVC application due to missing System.Web.Helpers

I've set up IIS 7 on my Windows 2008 R2 server according to this guide and deployed my ASP.NET MVC application on it via the one-click publishing method in Visual Studio 2010, but the IIS server fails to run the application due to a configuration…
aknuds1
  • 2,095
  • 3
  • 17
  • 23
4
votes
2 answers

Connection Reset error trying to set up HTTPS locally using VS and IIS Express

I'm trying to set up Facebook authentication on my application, so I tried following the steps at this page: http://www.asp.net/mvc/tutorials/mvc-5/create-an-aspnet-mvc-5-app-with-facebook-and-google-oauth2-and-openid-sign-on I'm specifically under…
Steven
  • 223
  • 1
  • 3
  • 5
4
votes
1 answer

Two application pools or root virtual directories under one site

This might sound like a very dumb question, so let me first say what I want to achieve and then proceed to my question on how I'd envision something like this working. I am trying to achieve completely seamless deploys of our web application to IIS…
Ruslan
  • 243
  • 1
  • 6
4
votes
2 answers

What file extensions must be allowed in request filtering when using ASP.Net MVC 3?

I have request filtering enabled and "Allow unlisted file name extensions" is set to false. When requesting any normal path, including "http://localhost" I get a 404.7 error - "The request filtering module is configured to deny the file extension."…
Chloraphil
  • 251
  • 3
  • 5
  • 15
4
votes
2 answers

IIS HTTP Error 403.18 - ASP.NET MVC 3 (with PHP 5.3 installed?)

I am getting this error when I am setting up a ASP.NET MVC3 application onto an IIS server. HTTP Error 403.18 - Forbidden The specified request cannot be processed in the application pool that is configured for this resource on the Web…
RicL
  • 153
  • 2
  • 5
4
votes
2 answers

What differences are between IIS 7.0 and IIS 7.5?

I thought that IIS 7.0 and IIS 7.5 have (from the application developer point of view) nearly same features. Then, I found that certain features are not working on IIS 7.0. Are there more features available in IIS 7.5 that are missing in IIS 7.0…
TN.
  • 557
  • 5
  • 10
  • 21
4
votes
1 answer

Should .NET MVC 3 actions trigger w3wp.exe to generate Process Monitor “PATH NOT FOUND” and “NAME NOT FOUND” errors?

I asked this on Stack Overflow, but it was suggested that I also ask it here, since it could be related to IIS: If I create an out-of-the-box ASP.NET MVC 3 Web Application (non-empty, Razor, no unit tests) and deploy it to an IIS 7.5 site (.NET 4,…
Noah Heldman
  • 141
  • 4
4
votes
5 answers

IIS 7.5 Siteminder is not protecting ASP.net MVC requests

We are trying to use ASP.Net MVC with Siteminder for Single Sign on. This is on Windows Server 2008 R2 with IIS 7.5. Siteminder Agent version 6QMR6. Problem : Siteminder protects physical files that are exist. And it is not protecting…
HariM
  • 41
  • 1
  • 4
1
2
3
15 16