I deployed my web application to IIS7 and everything works just fine. However, instead of typing the url of my true starting page, I want it to automatically go to www.xxxxxx.com/views/root/default.aspx.
How do I do this?
Just go to web.config file and add following
<system.webServer> <defaultDocument> <files> <clear /> <add value="Path of your Page" /> </files> </defaultDocument> </system.webServer>
1.4m articles
1.4m replys
5 comments
57.0k users