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

📄 logout.asp

📁 一个虚拟主机代理系统
💻 ASP
字号:
<%'=========================================
'ScriptMate User Manager Version 2.1
'Copyright 2001 (C) ScriptMate.Com
'User Module
'This module helps a member to logout
'For any help with modification to
'this file contact support@scriptmate.com
'=========================================

Sub Logout()
	
	dim url
	
	url = request("url")
	
	if not Application("smumdebugmode") then on error resume next
	
	Application("smummultiplelogs") = replace(Application("smummultiplelogs"),session("Username")&"|","")
	session.Abandon
	
	if isnull(url) then
		Response.Redirect Application("smumlogoutredirect")
	else
		Response.Redirect URL
	end if

End Sub%>

⌨️ 快捷键说明

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