Containeränderungen und Menüanpassungen des Seitenmenüs

This commit is contained in:
ja
2021-08-24 14:42:07 +02:00
parent ebfa4f10bf
commit 1052626426
15 changed files with 300 additions and 241 deletions

View File

@@ -1,5 +1,16 @@

Partial Class Customers_Customers
Inherits System.Web.UI.MasterPage
Protected Sub LogoutButton_Click(sender As Object, e As EventArgs)
FormsAuthentication.signout()
Session.Clear() 'clear session
Session.Abandon() 'Abandon session
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1))
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.Cache.SetNoStore()
Response.Redirect("Logout.aspx")
End Sub
End Class