Hi,
Please I need your help and advice.
I'm trying to implement forms authentication in my ASP.NET application. I'm using VS 2013, Framework 4.5.1, VB.NET, OS Windows 8 and IIS ver. 8.0.9200.16384
I have configured my Web.Config file as follow:
<authentication mode="Forms">
<forms loginUrl="~/admin/login.aspx"
defaultUrl="Default.aspx"
timeout="15"
slidingExpiration="false"
cookieless="UseCookies"
name=".ASPXAUTH"
requireSSL="false"
path="/"
protection="All"
enableCrossAppRedirects="false">
</forms>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*" ...
Go to the complete details ...