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
2
votes
1 answer

IIS 8.5 long compilation and high memory peak on first access

I have MVC 5 ASP.NET application which is precompiled on built server. There is no compilable elements in deployment package. This web application when deployed on IIS 7/7.5 is starting within 5 seconds on slow server with small memory. There is no…
Marcin
  • 121
  • 5
2
votes
1 answer

"mod_mono and xsp have different versions" error

I'm trying to start a test MVC4 application on Mono 2.10 $ xsp --version xsp2.exe 2.10.2.0 Copyright (C) 2002-2011 Novell, Inc. Minimalistic web server for testing System.Web $ mod-mono-server4 --version mod-mono-server4.exe 2.10.2.0 (c) (c)…
usr-local-ΕΨΗΕΛΩΝ
  • 2,359
  • 7
  • 34
  • 52
2
votes
2 answers

Does ModSecurity 2.7.1 work with ASP.NET MVC 3?

I'm trying to get ModSecurity 2.7.1 to work with an ASP.NET MVC 3 website. The installation ran without errors and looking at the event log, ModSecurity is starting up successfully. I am using the modsecurity.conf-recommended file to set the basic…
autonomatt
  • 133
  • 5
2
votes
1 answer

Redirecting old pages of asp.net webiste to new pages of new website designed

I have a website in asp.net, and about 27,000 pages of its are indexed in Google. I want to redirect all the pages of this site to the new site that i have made in the same platform. The problem is, if i started redirecting the pages manually, i.e.…
sukhjeet
  • 21
  • 1
2
votes
1 answer

Unable to access newly created web site in IIS 7.5

Configuration: 32-bit Windows 7 development machine with IIS 7.5 I created a new web site in IIS to host only MVC sites called MVCHOST. The physical path to this website is set as C:\inetpub\mvcroot. I created a new v4.0 pool called mvcpool for…
Animesh
  • 273
  • 5
  • 17
2
votes
5 answers

ASP.NET MVC Error

I have an MVC application in .NET 3.5 framework which is hosted in IIS 7. I have created the application in the root of the IIS 7. My application works fine when i try to access the by the path "http://localhost". But if i try to access any file…
None
2
votes
1 answer

ASP.NET 4 IIS 7 web server timeout

I have 3 applications on the same web server. Two of them are configured in separate ASP.NET 4 application pools and and one of them is on an ASP.NET 2 application pool. I'm experiencing intermitent timeouts when accessing those apps during the day.…
2
votes
2 answers

HTTP 500 Internal Server Error on IIS 7.5 with MVC3

I am trying to install an MVC3 application on our production server with no luck. The application is from a 3rd party (compiled), and so debugging is not available to me. Besides, I strongly suspect the error occurs before any code in the site has a…
Tor Haugen
  • 449
  • 4
  • 6
  • 14
2
votes
1 answer

How do I run multiple MVC apps within a subdomain on IIS7?

Hello and thanks for looking. Background I am currently wrapping up a development contract and the client would like for me to push a build of the application to their IIS 7-based server in which they would like to run multiple MVC apps. One of the…
Matt Cashatt
  • 235
  • 3
  • 7
2
votes
2 answers

Easy way to reload multiple applications under a single IIS Website after AppPool Recycle?

I'm not sure where to begin or even if my thinking is in the right direction. Hopefully someone here can tell me what to do or at least give me a direction to start travelling. I work on a Intranet Website, that contains multiple MVC3 and…
2
votes
3 answers

Why am I getting random 500 errors on my MVC and ASP websites on iis7?

It seems to happen on almost every site and does not matter if it is an ASP or .NET website. if you refresh right after you get that error it goes away and won't come back by just hitting refresh a bunch of times. I have two servers working with…
2
votes
1 answer

Win Server 2008 + IIS 7 + MVC3: what to install to deploy applications

I'm newbie at deployment. I have OS Windows Server 2008 R2 on my server with IIS 7. I have folder with .Net MVC3 web application. I created new pool, set Framework 4.0 for it. I created new website, chose physical path 'E:/site' and bound it to…
greatromul
  • 167
  • 3
  • 7
2
votes
4 answers

To DMZ or not-DMZ on new web site

We are about to release a web application for our users, and are trying to figure out if others put their servers in a DMZ, or just keep it off the domain behind the firewall and greatly restrict access via firewall rules? Has anyone here found any…
Beep beep
  • 1,833
  • 2
  • 18
  • 33
2
votes
0 answers

ADFS acting like it has a Relying Party Identifier blacklist?

In our development environment, we're having a problem with our configured Relying Parties in ADFS 2.0 that is baffling me. It's acting as though there is a blacklist of identifiers. We have 3 developers developing against this right now (new…
Jaxidian
  • 283
  • 3
  • 5
  • 19
2
votes
1 answer

Can't get MVC3 running on IIS 7.5

I have a development laptop with Visual Studio 2010 and MVC2 and MVC3 installed. I deployed an MVC3 application to a local inetpub location and set it up to run under IIS 7.5. At first I couldn't get URL rewriting to work at all, my symptoms were…
Paul Keister
  • 253
  • 3
  • 8