Asp.Net contains a mechanism to specify the default document in a web.config:
<defaultDocument>
<files>
<remove value="default.aspx" />
<remove value="Default.asp" />
<remove value="index.html" />
<remove value="Default.htm" />
<remove value="index.htm" />
<remove value="iisstart.htm" />
<remove value="landing.aspx" />
<remove value="views.aspx" />
<remove value="index.aspx" />
<add value="landing.aspx" />
<add value="views.aspx" />
<add value="index.aspx" />
</files>
</defaultDocument>
Is there a mechanism to retrieve the document that will be used for a certain local path request?
Requests could be: /MySite/
(index.aspx), /MySite/Views/One
(views.aspx), /MySite/Pages/PageOne
(landing.aspx). Each directory contains a different "default document".