Mike,
Take a look at the ASP.NET Settings Schema:
http://msdn.microsoft.com/library/en...tionschema.asp
In there you'll find a node for "location". The default web.config comes without the location node and thus the application root "/" is assumed. However, you can add a location node to specific path or page and add the configuration you wish:
<location path="viewyourdetails.aspx">
<system.web>
<authentication mode="Forms">
<forms name="name" loginUrl="login.aspx" />
</authentication>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
-
Peter