when I visit http://mywebsiteurl.com/ by default it will load Default.aspx, index.html, or welcome.html... I would like to know how I can make a directory point to index.ashx (or something else other then index.html) is it inside the web.config file?
|
If it's IIS7, you can add the following to your web.config ...
More on that here. If it's a previous version, you need access to IIS Manager to do it. Here's how. |
|||
|
|
|
I've never used godaddy as a host, but if you are not on IIS7 and can't change the default files, you could also use the web.config to re-map Default.aspx to whatever handler you wanted:
In some ways this is cleaner than using the control panel to re-point the page as it is now part of your application's code base and not an environmental dependency, so you won't need to do things like make sure to repeat the configuration change on your development or QA environments. |
|||
|
|
GoDaddy recommended that I use a meta redirect. They recommend creating another Default webpage with an extension that is first in the order (.htm or .html). I put this code in Default.html, the server reads it first and redirects to the login page. The code is:
|
||||
|
|
|
The solution is, right click on the page you want to be your start up page in the Solution Explorer and select "Set as Start Page". |
|||
|
Go To any page which you want to display start page right click on it -> choose start up page |
|||||
|
