Hi,
I am trying to password protect a folder and am using forms authentication. If I type in the complete url of some folder within that folder, the application correctly throws the user back to the login page, however the ReturnURL variable is missing from the querystring!
Here's what I am using in the web.config.
<authentication mode="Forms"><forms name="_Cookie" loginUrl="myaccount/login.aspx" timeout="30"></forms></authentication >
--------------------------
<location path="myaccount"><system.web><authorization><deny users ="?"/> </authorization> </system.web> </location>
Am I missing anything? All help will be appreciated.
Thanks!