I'm using Sharepoint 2010 with Forms Based Authentication, and when a new user registers on the site, I would like to automatically log that user in immediately after registration.

I can do this pretty easily with SPClaimsUtility.AuthenticateFormsUser(), but this causes the FedAuth cookie to be persistent across browser sessions, as if "Remember Me" was checked. I would like to have the login only last for the browser session, so that the next time the user returns (after closing the browser) the user is asked to log in.

The key is that I still need the "Remember Me" to work if the user explicitly selects it on any subsequent logins, so I can't just disable persistent FBA cookies.

I've tried replacing AuthenticateFormsUser() with FormsAuthentication.SetAuthCookie(), but couldn't get it to work (crash). I also tried using FormsAuthenticationTicket, but I couldn't get that to log the user in either. I've even tried to manually set the expiration of the FedAuth cookie, but this just causes the user to be logged out.

Any suggestions how I can either make AuthenticateFormsUser() non-persistent, or some alternative to this method? Thanks!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.