manage.asp
来自「邮件发送系统 sql与vb实现的 能完成在线的邮件发送与管理」· ASP 代码 · 共 39 行
ASP
39 行
<html>
<head>
</head>
<link rel="stylesheet" href="style.css">
<%
'检查用户是否已经经过登陆验证了
if session("admin") = "" and session("flag") = "" Then
'如果没有登陆,则输出出错信息
'要求用户进行登陆
response.write " <br><br><br>"
response.write " <table align='center' width='300' border='1' cellpadding='0' cellspacing='0' bordercolor='#999999'>"
response.write " <tr bgcolor='#999999'> "
response.write " <td colspan='2' height='15'> "
response.write " <div align='center'><font color='#FFFFFF'>操作: 确认身份失败!</font></div>"
response.write " </td>"
response.write " </tr>"
response.write " <tr> "
response.write " <td colspan='2' height='23'> "
response.write " <div align='center'><br><br>"
response.write " 非法登陆,您的操作已经被记录!!! <br><br>"
response.write " <a href='javascript:onclick=history.go(-1)'>返回</a>"
response.write " <br><br></div></td>"
response.write " </tr> </table>"
'终止响应
response.end
end if
%>
<title>手机短信管理系统</title>
<frameset framespacing="0" border="false" cols="110,*" frameborder="0">
<frame name="left" scrolling="auto" marginwidth="0" marginheight="0" src="left.asp">
<frame name="right" scrolling="auto" marginwidth="0" marginheight="0" src="main.asp">
</frameset>
<noframes>
<body>
<p>本页面需要浏览器支持框架。</p>
</body>
</noframes>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?