14 lines
347 B
VB.net
14 lines
347 B
VB.net
|
|
Partial Class Customers_Customers
|
|
Inherits System.Web.UI.MasterPage
|
|
|
|
|
|
Protected Sub LogoutButton1_Click(sender As Object, e As EventArgs)
|
|
Page.MaintainScrollPositionOnPostBack = True
|
|
Page.MetaDescription = "Die Masterpage für alle Unterseiten"
|
|
|
|
Response.Redirect("../login/Logout.aspx")
|
|
End Sub
|
|
End Class
|
|
|