📄 readview.asp
字号:
<%@ Language=VBScript%>
<!--#include file="conn.asp"-->
<!--#include file="config.asp" -->
<!--#include file="char.inc"-->
<%
ReViewID=ChkRequest(Request.QueryString("ReViewID"),1) '防注入
newsID=Request.QueryString("newsID")
if ReViewID="" then
Response.Write "<script>alert('未指定参数');history.back()</script>"
response.end
else
if not IsNumeric(ReViewID) then
response.write "<script>alert('非法参数');history.back()</script>"
response.end
else
set rs=server.CreateObject("ADODB.RecordSet")
rs.Source="select * from E_Review where ReViewID=" & ReViewID & " order by reviewid desc"
rs.Open rs.Source,conn,1,3
if rs.EOF then NoReview=1
rs.close
set rs=nothing
end if
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>文章评论_<%=jjgn%>_建站铺修正版_bbs.jzpu.com</title>
<LINK href=news.css rel=stylesheet>
</head>
<body topmargin="0">
<!--#include file="top.asp"-->
<form method="POST" action="AddReview.asp">
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr valign="top">
<td rowspan="2"><center>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td height="3" ><img src="IMAGES/kb.gif" width="9" height="3"></td>
</tr>
<tr>
<td height="30" background="IMAGES/red_bg.jpg" class="white_link" > 栏目导航<a class=white_link href="./" > </a><strong><b> 当前位置:<a class="white_link" href="./" >网站首页</a>>>评论</b></strong></td>
</tr>
<tr bgcolor="CDCCCC">
<td bgcolor="#FFFFFF">
<script language=javascript src=./zongg/ad.asp?i=13></script></td>
</tr>
<tr valign="top">
<td><table width="95%" border="0" align="center" cellpadding="0" cellspacing="0" id="AutoNumber3" style="border-collapse: collapse">
<tr>
<td valign=top> </td>
</tr>
<tr>
<td valign=top><table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="100%" height="20" colspan="2"></td>
</tr>
<tr>
<td width="100%" colspan="2"><%if NoReview then Response.Write "该信息当前没有任何评论!"%>
</td>
</tr>
<%
if not NoReview then
set rs=server.CreateObject("ADODB.RecordSet")
rs.Source="select * from E_Review where ReViewID=" & ReViewID & " order by reviewid desc"
rs.Open rs.Source,conn,1,1
author=trim(rs("author"))
reviewip=rs("reviewip")
email=server.HTMLEncode(trim(rs("email")))
content=trim(rs("content"))
%>
<tr>
<td colspan="2"><table width="100%" border="0" cellpadding="5" cellspacing="0" bgcolor="efefef" style="table-layout:fixed; word-break:break-all">
<tr>
<td width="322">发表人:<%=author%></td>
<td width="270"><p align="right">
<%if Request.cookies(eChuang)("key")="super" or showip="1" then%>
IP:<%=reviewip%>
<%end if%>
</td>
</tr>
<tr>
<td colspan="2"><table width="100%" border="0" cellspacing="0" cellpadding="0" style="table-layout:fixed; word-break:break-all">
<tr>
<td>发表人邮件:<a href='mailto:<%=email%>'><%=email%></a></td>
<td align="right">发表时间:<%=rs("updatetime")%></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="2" bgcolor="#FFFFFF"><%=content%></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<%end if
rs.close
set rs=nothing%>
<tr>
<td width="100%" colspan="2"> </td>
</tr>
</table></td>
</tr>
<tr>
<td valign=top> </td>
</tr>
</table></td>
</tr>
<tr valign="top">
<td height="19"> </td>
</tr>
</table>
</center></td>
</tr>
</table>
</form>
<!--#include file="bottom.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -