📄 guestbox.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="ConnUser.asp"-->
<!--#include file="config.asp"-->
<!--#include file="Char.inc"-->
<html>
<head>
<title>_建站铺修正版_bbs.jzpu.com</title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href=site.css rel=stylesheet>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%=request.cookies(eChuang)("content")%>
<%
Dim action,newsID,rs,Content
dim sql
dim conn
Action=LCase(Request.QueryString("Action"))
reviewid=ChkRequest(Request.QueryString("reviewid"),1) '防注入
if not IsNumeric(reviewid)then
response.write "<script>alert('非法参数');history.back()</script>"
response.end
end if
If request("action")="modify" Then
set rs=server.createobject("adodb.recordset")
sql="select * from "& db_Review_Table &" where reviewid="&reviewid
rs.open sql,conn,1,1
If Not rs.Eof Then
Content=rs("Content")
End If
Response.Write Content
End If
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -