jQuery and ASP.NET

February 15, 2009

How to Display Last Login Date for a User in ASP.NET




If you are using Forms Authentication and want to find the last login date of a registered user, here's how to do so. In the Login_Authenticate event, use the following code just before authentication the user:

C#


protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)


{


MembershipUser mu = Membership.GetUser(Login1.UserName);


DateTime dt = mu.LastLoginDate;


Session["lastlogindt"] = dt;



// Then authenticate the user here (e.Authenticate = true)


}




VB.NET


Protected Sub Login1_Authenticate(ByVal sender As Object, ByVal e As AuthenticateEventArgs)


Dim mu As MembershipUser = Membership.GetUser(Login1.UserName)


Dim dt As DateTime = mu.LastLoginDate


Session("lastlogindt") = dt



' Then authenticate the user here


End Sub



Bookmark this link on del.icio.us (saved by 0 users)

Did you like this post?
kick it on DotNetKicks.com
subscribe via rss subscribe via e-mail
print this post follow me on twitter
Others Also Read..

comments

0 Responses to "How to Display Last Login Date for a User in ASP.NET"
 

Copyright 2010 All Rights Reserved DevCurry.com by Suprotim Agarwal