Yes, You can do it. There are various method available but the simplest way is to use 'cookies':), like this, ' on "Login.aspx.vb" page Dim uname As String = Login1.UserName Dim pwd As String = Login1.Password e.Authenticated= FormsAuthentication.Authenticate(uname,pwd) If FormsAuthentication.Authenticate(uname, pwd) Then FormsAuthentication.RedirectFromLoginPage(uname, True) Response.Cookies("CokieLogin").Value = uname Else Login1.FailureText = "Either User Name or Password is wrong." End If 'On "Default.aspx.vb" page Dim UserName As String = UCase(Request.Cookies("CokieLogin").Value) 'here we expire the cookies Response.Cookies("CokieLogin").Expires = System.DateTime.Now()
prabhakar