Login System wurde eingebaut. Dazu wurden das neue Icon erstellt und eingebunden
This commit is contained in:
12
login/LogOut.aspx.vb
Normal file
12
login/LogOut.aspx.vb
Normal 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
|
||||
Reference in New Issue
Block a user