⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 default.aspx.vb

📁 用flash做的网页上传工具
💻 VB
字号:

Partial Class _Default
    Inherits System.Web.UI.Page

	Protected AuthCookie As String

	Public Sub Page_Load(ByVal Sender As Object, ByVal E As EventArgs)
		Session.Clear()

		Dim auth_cookie As HttpCookie = Request.Cookies(FormsAuthentication.FormsCookieName)
		If Not auth_cookie Is Nothing Then
			AuthCookie = auth_cookie.Value
		End If

	End Sub

	Protected Sub btnLogout_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnLogout.Click
		FormsAuthentication.SignOut()
		FormsAuthentication.RedirectToLoginPage()
	End Sub
End Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -