Reputation: 75
If user directly close their browser without clicking logout then next time they open browser its session will be maintained as it is till they logout explicitly by clicking Logout button
I want to do it in vb.net !
Upvotes: 1
Views: 829
Reputation: 1039160
Simply pass true
as second parameter when emitting the authentication cookie:
FormsAuthentication.RedirectFromLoginPage(Username, true)
This will create a persistent authentication cookie on the client whose expiration is handled by the timeout property in your web.config:
<forms
loginUrl="~/login.aspx"
defaultUrl="~/default.aspx"
protection="All"
timeout="3600"
</forms>
Upvotes: 1