vote up 0 vote down star

When I build and run my application I get a directory listing in the browser (also happens for sub folders), and I have to click on Index.aspx. It's making me crazy.

Visual Studio 2008 ASP.NET Development Server 9.0.0.0

flag

75% accept rate

3 Answers

vote up 2 vote down

Right click on the web page you want to use as the default page and choose "Set as Start Page" whenever you run the web application from Visual Studio, it will open the selected page.

link|flag
Yup, that works for the start page, but when I browse to anything in a sub folder I get a folder listing again. – Dan Williams Jul 14 at 14:07
vote up 1 vote down

Go to the project's properties page, select the "Web" tab and on top (in the "Start Action" section), enter the page name in the "Specific Page" box. In your case index.aspx

link|flag
Yup, that works for the start page, but when I browse to anything in a sub folder I get a folder listing again. – Dan Williams Jul 14 at 13:16
It's not possible to specify a default page in Visual Studio's internal webserver (Cassini) – Philippe Leybaert Jul 14 at 13:22
It's working as expected for several of the other developers in my group – Dan Williams Jul 14 at 13:50
The built-in webserver is hardwired to use Default.aspx as the default page. Maybe your team members are using Default.aspx instead of index.aspx? Or maybe they're using the local IIS on their machine for development. – Philippe Leybaert Jul 14 at 14:25
vote up 0 vote down

If you are running against IIS rather than the VS webdev server, ensure that Index.aspx is one of your default files and that directory browsing is turned off.

link|flag
Nope, I'm running the VS webdev server. – Dan Williams Jul 14 at 13:24

Your Answer

Get an OpenID
or

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