Codedesign CSS-Abschnitt

This commit is contained in:
ja
2022-02-09 11:02:56 +01:00
parent 3b5de5829f
commit b9e943862f
3 changed files with 15 additions and 25 deletions

View File

@@ -4,7 +4,6 @@ Imports System.Security.Cryptography
Partial Class login_Logout
Inherits System.Web.UI.Page
Function Page_Load() As Threading.Tasks.Task Handles Me.Load
FormsAuthentication.SignOut()
Session.Clear()
@@ -13,7 +12,6 @@ Partial Class login_Logout
'Dim cookie1 As HttpCookie = New HttpCookie(FormsAuthentication.FormsCookieName, "")
'cookie1.Expires = DateTime.Now.AddYears(-1)
'Response.Cookies.Add(cookie1)
'clear session cookie
'Dim sessionStateSection As New SessionStateSection
'SessionStateSection = WebConfigurationManager.GetSection("system.web/sessionState")
@@ -23,7 +21,6 @@ Partial Class login_Logout
Response.BufferOutput = True
End Function
Protected Sub btn_backtostart_Click(sender As Object, e As EventArgs) Handles btn_backtostart.ServerClick
Response.Redirect("../login/login_FLEX.aspx")
End Sub