17 lines
504 B
VB.net
17 lines
504 B
VB.net
|
|
Partial Class Kundenbereich_Default
|
|
Inherits System.Web.UI.Page
|
|
Protected Sub LogOutBtn1_Click(sender As Object, e As EventArgs)
|
|
|
|
FormsAuthentication.SignOut()
|
|
Session.Abandon()
|
|
Response.Redirect("../newpageJulius_Sidebar.aspx", True)
|
|
End Sub
|
|
Protected Sub LogOutBtn2_Click(sender As Object, e As EventArgs)
|
|
|
|
FormsAuthentication.SignOut()
|
|
Session.Abandon()
|
|
Response.Redirect("../newpageJulius_Sidebar.aspx", True)
|
|
End Sub
|
|
End Class
|