G
Guest
For an application root i use a web.config file and specify this authentication and authorization scheme:
<authentication mode="Forms"><forms loginUrl = "AdminLogin.aspx" name = "FORMSAUTHCOOKIE" path="/" timeout="10"></forms></authentication><authorization><deny users="*"/></authorization>
The result when browsing to the application root (under which are sensitive .aspx pages), is that AdminLogin.aspx is found, but not loaded. There is a parser error loading the code behind class.
What is the likely solution to this issue? Why?
<authentication mode="Forms"><forms loginUrl = "AdminLogin.aspx" name = "FORMSAUTHCOOKIE" path="/" timeout="10"></forms></authentication><authorization><deny users="*"/></authorization>
The result when browsing to the application root (under which are sensitive .aspx pages), is that AdminLogin.aspx is found, but not loaded. There is a parser error loading the code behind class.
What is the likely solution to this issue? Why?