
Partial Class UserControl_AdminLoginTopBanner
    Inherits System.Web.UI.UserControl

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Session("LogTime") <> "" Then
            Label1.Text = "You previously logged on " & Session("LogTime").ToString
            'InsertAdminUserLog(Session("LogKid"), Session("LogName").ToString, Request.UserHostAddress, 0, "AdminLogin", "Update")
        End If

    End Sub

    Protected Sub lnklogout_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lnklogout.Click
        InsertAdminUserLog(Session("LogKid"), Session("LogName").ToString, Request.UserHostAddress, 1, "Admin", "AdminLogin", "Update")
        Response.Redirect("../Admin/AdminLogin.aspx")
    End Sub
End Class
