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

📄 checkcode.asp

📁 大学的综合测评
💻 ASP
字号:
<%	
'验证码
Response.buffer = True
function chkcode()
    Response.Expires = -1
    Response.AddHeader "Pragma", "no-cache"
    Response.AddHeader "cache-ctrol", "no-cache"
    dim temprnd7666
	Randomize
	temprnd7666=cstr(Int((9999 - 1000 + 1) * Rnd() + 1000))
	response.Write (temprnd7666)
	Session("CheckCode")=temprnd7666
end function
%>

⌨️ 快捷键说明

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