send_error.asp

来自「ASPSQL企业网络管理系统」· ASP 代码 · 共 27 行

ASP
27
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html>
<head>
<title>发送错误信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style/style.css" rel="stylesheet" type="text/css">
</head>

<body>
<form action="send_error.asp" method="post"><table width="400" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center">发送错误信息给管理员</td>
  </tr>
  <tr>
      <td align="center"><font color="#0099FF"><strong><%= Session("error") %></strong></font></td>
  </tr>
  <tr>
    <td align="center"><input type="submit" name="Submit" value="发  送">
        &nbsp;&nbsp; 
        <input type="button" name="Submit2" value="取  消" onClick="window.close();"></td>
  </tr>
</table>
</form></body>
</html>
<%
Session("error") = null
%>

⌨️ 快捷键说明

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