Änderungen an Container und h1 Überschriften css sowie Language mobil sidemenue picker

This commit is contained in:
ja
2021-08-27 17:00:03 +02:00
parent 7507d9ed4e
commit fd0a71ee93
13 changed files with 77 additions and 138 deletions

View File

@@ -53,9 +53,19 @@ Partial Class login_login_TEST
End Using
End Sub
Protected Sub LoginButton_Click(sender As Object, e As EventArgs)
End Sub
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("../newpageJulius_Sidebar.aspx")
End Sub
End Class