Forms Authentication web.config set up

annuakymal

New Member
Is this specification correct in the root web.config file? I haven't used a child web.config in the protected folder.\[code\]<system.web> <authentication mode="Forms"> <forms name=".ASPXAUTH" loginUrl=""> </forms> </authentication></system.web>\[/code\]Then another specification for system.web also in root web.config:\[code\]<location path="to protected folder"> <system.web> <authorization> <deny users="?"/> </authorization> </system.web>\[/code\]
 
Back
Top