george wambui

george wambui

  • NA
  • 17
  • 38.9k

CAN SOMEONE CORRECT THE FOLLOWING CODE FOR ME

Apr 11 2012 2:14 AM
Hi Team,

I have the following code below where i want when someone login in to the system, his /her username is caputured and set at label. of the master page.

Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
     
       
        Dim dtNow As DateTime
        dtNow = Now()
        lblDate.Text = dtNow.ToLongDateString 
     
        Dim strUser As String = Page.User.Identity.Name()
        If Page.User.Identity.Name Then
            lblLoggedIn.Text = Page.User.Identity.Name & ""
           
           
        End If
    End Sub
  
    Regard
George

Answers (3)