📄 wmcms_opinionreadview.asp
字号:
<%@ Language=VBScript%>
<!--#include file=conn.asp -->
<!--#include file=config.asp -->
<%
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 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%>完美设计网络科技有限公司 完美政府网站管理系统 http://www.wmgov.cn</title>
<LINK href=news.css rel=stylesheet>
</head>
<body topmargin="0">
<!--#include file="top.asp"-->
<table width="1002" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr valign="top">
<td width="180" bordercolor="#FDFCF8" bgcolor="#FDFCF8" style="border-left: 1px solid #cccccc ; border-top: 1px solid #cccccc ; border-bottom: 1px solid #cccccc ; border-right: 1px solid #cccccc ">
<!--#include file="WmCms_Linterflow.asp"-->
</td>
<td width="6"></td>
<td width="810" style="border-left: 1px solid #cccccc ; border-top: 0px solid #cccccc ; border-bottom: 1px solid #cccccc ; border-right: 1px solid #cccccc ">
<form method="POST" action="AddReview.asp">
<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="25" background="IMAGES/WmCms_Result.gif" bgcolor="CDCCCC" > <a class=daohang href="./" > </a><strong><b> 当前位置:<a class="daohang" href="./" >网站首页</a>>评论</b></strong></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 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(Forcast_SN)("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>
</table>
</form>
</td></tr></table>
<!--#include file="bottom.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -