P
peshekeedweller
I'm using forms authentication. The code is in the Login.aspx is:
If Not id Is Nothing Then
FormsAuthentication.RedirectFromLoginPage(id, False)
The entries in the global web.config files are:
<authentication mode="Forms">
<forms loginUrl="Secure/Login.aspx" />
</authentication>
and:
<authorization>
<deny users="?"
</authorization>
Even when id returns "true" and the
"FormsAuthentication.RedirectFromLoginPage(id, False)" line runs the user is
not authenticated and the redirection (to "default.aspx) does not work. It
redirects to the "Login.aspx".
Help please!
If Not id Is Nothing Then
FormsAuthentication.RedirectFromLoginPage(id, False)
The entries in the global web.config files are:
<authentication mode="Forms">
<forms loginUrl="Secure/Login.aspx" />
</authentication>
and:
<authorization>
<deny users="?"
</authorization>
Even when id returns "true" and the
"FormsAuthentication.RedirectFromLoginPage(id, False)" line runs the user is
not authenticated and the redirection (to "default.aspx) does not work. It
redirects to the "Login.aspx".
Help please!