vote up 0 vote down star

Hi, In my asp.net website i am using asp.net form authentication with following configuration

<authentication mode="Forms">
    		<forms loginUrl="~/Pages/Common/Login.aspx" defaultUrl="~/Pages/index.aspx" protection="All" timeout="30" name="MyAuthCookie" path="/" requireSSL="false" cookieless="UseDeviceProfile" enableCrossAppRedirects="false" >
    		</forms>
    	</authentication>

I have following questions

  1. What should be timeout value for session because i am using sliding expiration inside form authention due to which session will expire before form authentication. How can i protect it?

  2. After formauthentication log out i would like to redirect page at logout.aspx but it is automatically redirect me at loginpage.aspx. How is it possible?

flag

42% accept rate

1 Answer

vote up 1 vote down check
  1. To be on the safe side: TimeOut(Session) <= TimeOut(FormsAuthentication) * 2
  2. If you want to show page other than specified in loginUrl attribute after authentication timeout you need to handle this manually as ASP.NET does not provide a way of doing it.

To achieve #2 you can should manually check the cookie and its AuthenticationTicket for expiration and redirect to your custom page if they have expired.
You can do in it in one of the events: AcquireRequestState, AuthenticateRequest.

Sample code in the event can look like:

var cookie = Retrieve AuthenticationCookie();
if (cookie == null) return;
FormsAuthenticationTicket ticket = null;
try {
    ticket = FormsAuthentication.Decrypt(cookie.Value);
} catch (Exceptoin decryptError) {
    // Handle properly
}
if (ticket == null) return; // Not authorised
if (ticket.Expiration > DateTime.Now) {
    Response.Redirect("SessionExpiredPage.aspx"); // Or do other stuff here
}
link|flag
Thanks Dmitriy, My second question: As its written above inside <Form ...> that default page is "index.aspx" and login is "login.aspx". After login at my dashboard page when i remain ideal for 30 minute (timeout) and after that i click on any link i will automatically redirect to login page with following URL localhost:/virtualdir/Pages/… But here i would like to redirect page at logout page where i can say some logout information – Hemant Kothiyal Sep 24 at 10:28
Updeted the answer. – Dmitriy Nagirnyak Sep 24 at 10:53
Can you show me example because in my case i take scenario where i set formauthentication timeout= 2 minute while session timeout= 6 minute and after 3 minute when i click on link It doesn't debug anywhere even not at "AcquireRequestState" Please help? – Hemant Kothiyal Sep 24 at 13:07
Upps. Sorry, the timeout for the FormsAuthentication should be twice longer than Session's one. Corrected that. AcquireRequestState and AuthenticateRequest should always be triggered (no matter what). Make sure you correctly subscribed to these events on the HttpApplication class. – Dmitriy Nagirnyak Sep 24 at 13:32
Thanks, Can you clear another doubt. I have confusion that if i set sliding expiration=true in "Formauthentication" then automatically sliding expiration works for session timeout also or not? Does sliding expiration works for session time out? – Hemant Kothiyal Sep 24 at 14:05
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.