Virtual Host running Asp.net MVC2 program experience

Source: Internet
Author: User

1. confirm that the host supports ASP. NET. At the beginning, I only saw support for ASP. net on the home page of the host service provider.ProgramPublished, and the result is displayed as "DOTNET disable". ASP. NET support is enabled on the Host Control Panel.

2. Modify the ASP. NET MVC2 web application created with vs2008

Modify the local copy attributes of the following references to true:

System. componentmodel. dataannotations
System. Core
System. Data. datasetextensions
System. Web. Category actions
System. Web. Extensions
System. Web. MVC
System. Web. Routing
System. xml. LINQ

Modify web. config, open it and check that there is too much content. I directly created an ASP under 2.0. net web application. the config file is copied in <system. add the following sentence to the Web> section:

 
<Httpmodules> <Add name = "urlroutingmodule" type = "system. web. routing. urlroutingmodule, system. web. routing, version = 3.5.0.0, culture = neutral, publickeytoken = 31bf3856ad364e35 "/>  
Because the VM cannot add mappings by itself, you also need to modify global. asax. CS
 
Routes. maproute ("default", // route name "{controller}/{action }. aspx/{ID} ", // URL with parameters new {controller =" home ", Action =" Index ", id = urlparameter. optional} // parameter defaults );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.