Files
VERAG_Homepage/Customers/Customers.master.vb
2021-09-13 16:49:45 +02:00

10 lines
251 B
VB.net

Partial Class Customers_Customers
Inherits System.Web.UI.MasterPage
Protected Sub LogoutButton1_Click(sender As Object, e As EventArgs)
MsgBox("Logged out!")
Response.Redirect("../login/Logout.aspx")
End Sub
End Class