Login System wurde eingebaut. Dazu wurden das neue Icon erstellt und eingebunden

This commit is contained in:
ja
2021-08-27 16:10:54 +02:00
parent 5fcaf2e580
commit 7507d9ed4e
8 changed files with 134 additions and 30 deletions

12
login/LogOut.aspx.vb Normal file
View File

@@ -0,0 +1,12 @@

Partial Class login_LogOut
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Session.Abandon()
FormsAuthentication.SignOut()
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1))
Response.Cache.SetNoStore()
End Sub
End Class