Deploying An ASP.Net MVC Web Application To IIS7 In Windows Server 2008 64bit

Deploying An ASP.Net MVC Web Application To IIS7 In Windows Server 2008 64bit

- Install the Micrsoft .NET Framework 3.5

- Copy web application files to a directory on your web server.

- Add application pool name "ASPNETMVC", select Intergrated in Managed pipeline mode, check "Start application pool inmmediately".

- Open Internet Information Services (IIS) Manager, right click on Site, "Add application", type MVC in Alias, select application pool ASPNETMVC, and physical path pointing to directory of your web application.

- Install ASP.NET MVC, otherwise you can publish ASP.NET MVC dll in your web application. Right click on three assembly below, click property and set Copy Local to True:

System.Web.Abstraction

System.Web.Mvc

System.Web.Routing

- Test out your web application. Make sure it works...

Comments