i have designed my homepage of my webpage as abc.aspx not default.aspx . How can set the abc.aspx as homepage?
A:
If using Visual Studio you can right click on the page and select Set as Startup Page. In IIS you can add it to the Default Document list, ensure you put it first in the list.
James
2009-11-27 09:41:19
A:
add abc.aspx in default document list in ISS. then move it to top on list.
Pragnesh Patel
2009-11-27 09:42:50
+1
A:
Although you can change the default document using IIS Manager, as others have said, I prefer to do it directly in web.config, since I don't have every site configured to use IIS in my development environment. For example:
<system.webServer>
. . .
<defaultDocument>
<files>
<clear/>
<add value="abc.aspx"/>
</files>
</defaultDocument>
</system.webServer>
RickNZ
2009-11-27 12:33:29