reguestbook.asp

来自「一个有用的东西 希望大家喜欢 谢谢大家对本站的支持」· ASP 代码 · 共 59 行

ASP
59
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title><%=title1%>-版主回复</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
}
-->
</style></head>

<body onload="javascript:form1.tt.focus();">
<%if session("admin")="mfkiqpl" then
%>
<script>
function check(){
if(form1.tt.value==""){
alert("检查输入!");
form1.tt.focus();
return false;
}
}
</script>
<%dim action
action=request("action")
if action<>"ok" then
%>
<table width="400" border="0" cellpadding="0" cellspacing="1" bgcolor="<%=color1%>">
<form name="form1" method="post" action="?action=ok&id=<%=request("id")%>" onsubmit="return check();">
  <tr>
    <td height="170" bgcolor="<%=color3%>"><textarea name="tt" cols="53" rows="10" id="tt"></textarea></td>
  </tr>
  <tr>
    <td height="30" align="center" bgcolor="<%=color3%>"><input type="submit" name="Submit" value="回 复">   
      <input type="button" name="Submit2" value="取 消" onclick="javascript:window.close();"></td>
  </tr>
</form>
</table>
<%else
dim id,t1
t1=replace(request("tt"),"'","’")
id=trim(request("id"))
sql="update guestbook set re='"&t1&"' where id="&id
conn.execute (sql)
closeconn
response.Write("<script>window.opener.location.reload();</script>")
response.Write("<script>window.close();</script>")
end if
else
response.Write("<script>window.close();</script>")
end if
%>
</body>
</html>

⌨️ 快捷键说明

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