Här beskrivs en lösning på ditt problem:
http://www.eggheadcafe.com/forumarchives/n...ost24881509.asp
Eller kika på den kompletta Knowledgebase artikel hos Microsoft som beskriver det hela:
http://support.microsoft.com/default.aspx?...kb;en-us;316871
Kod:
<system.web> *
* *<authorization> *
* * * *<allow users="*" /> *
* *</authorization> *
</system.web> *
<location path="/yoursubfolder"> *
* *<system.web> *
* * * *<authentication mode="Forms" > *
* * * * * *<forms loginUrl="login.aspx" name=".ASPNETAUTH" protection="None" path="/subdir"
* * * * * * * timeout="20" > *
* * * * * *</forms> *
* * * *</authentication> *
* * * *<authorization> *
* * * * * *<allow users="?" /> *
* * * *</authorization> *
* *</system.web> *
</location>