Rudimentary folder structure:
<root> ---<admin> ------index.aspx ------[other files] ---index.aspx
When I navigate to mywebsite.com/admin/, all I get is a directory listing. How can I get it to load up index.aspx automatically?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to change the default documents list on the IIS website configuration dialog. If you don’t have access to this, change index.aspx to default.aspx. The ASP.NET install sets default.aspx in the list, and it’s the reason all new VS web projects start with a Default.aspx page.