Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 9 down vote accepted

If it's IIS7, you can add the following to your web.config ...

<configuration>   
  <system.webServer>
     <defaultDocument>
        <files>
          <add value="index.ashx" />
        </files>
      </defaultDocument>
  </system.webServer>
</configuration>

More on that here. If it's a previous version, you need access to IIS Manager to do it. Here's how.

share|improve this answer

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:

<httpHandlers>
  <remove verb="*" path="Default.aspx" />
  <add verb="*" path="Default.aspx" 
       type="The.Type.Of.My.Handler, The.Assembly.Of.My.Handler" />
</httpHandlers>

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.

share|improve this answer
This looks like a useful solution as GoDaddy only seems to allow setting a default document if you have their 'Deluxe' or 'Premium' windows hosting accounts :( – mdresser Mar 31 '10 at 18:50

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:

<html>
 <head>
  <meta http-equiv="Refresh" content="1;url=http://www.*mywebsite*.com/Account/Login.aspx" />
 </head>

 <body>
 </body>
</html>
share|improve this answer

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".

share|improve this answer
1  
I don't think that has any impact on the startpage on the hosting server. – magnus Jan 1 '10 at 17:19
That is only the page that will open when you run your project from within visual studio. It has no effect on a deployed project. – Fishcake Jan 1 '10 at 17:23

Go To any page which you want to display start page right click on it -> choose start up page

share|improve this answer
2  
Please don't do crazy formatting like that in the future. – Andrew Barber Oct 2 '12 at 11:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.