Hello All,
Could someone please help me with the logout button?
I've tried:
FormsAuthentication.SignOut()
Response.Redirect("login.aspx")
I've also tried:
Session.Abandon()
Response.Redirect("login.aspx")
---
vb.net web app
namespace:
Imports System.Web.Security
<authentication mode="Forms">
<forms loginUrl="logon.aspx" name="sqlAuthCookie" timeout="60"
path="/">
</forms>
</authentication>
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
Thank you!
Lee :(