⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 review.asp

📁 一个人用ASP+SQL制作的个人博客
💻 ASP
字号:
<%@ Language=VBScript %>
<!--#include file="articleconn.asp"-->
<%
dim sql
dim rs
dim listname
set rs=server.createobject("adodb.recordset")
sql="select review,title,reviewcount from film where id="&request("id")

rs.open sql,conn,1,1
%>
<HTML>
<HEAD><title>评论:<%=rs("title")%></title>
<META NAME="GENERATOR" Content="Microsoft FrontPage 4.0">
<style type="text/css">
<!--
body,td {  font-size: 14.1px}
.f138 {  font-size: 14px;line-height: 20px}
.nav {  font-size: 14px; color: #000000; letter-spacing: 5px}
a:link {  color: #66CCFF;text-decoration: none}
a:active {  text-decoration: none}
a:visited {  color: #66CCFF;text-decoration: none}

.td1  { border-color: #99CCFF black black #99CCFF; color: #99CCFF; padding-left: 5px; border-style: outset; border-top-width: thin; border-left-width: thin}-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></HEAD>
<body topmargin="0" leftmargin="5" marginwidth="0" marginheight="0">
<br>
<table width="500" border="1" cellspacing="0" cellpadding="0" bordercolorlight="#000000" bordercolordark="#FFFFFF" align="center">
  <tr bgcolor="#333333"> 
    <td> <div align="center"> <%=rs("title")%> &nbsp;&nbsp;的相关评论文章共:<%=rs("reviewcount")%> 篇</div>
  <tr> 
    <td> <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td width="50%"><a href="javascript:self.close()">『关闭窗口』</a></td>
          <td width="50%"> <div align="right"><a href="addreview.asp?ID=<%=request("id")%>">发表评论</a> 
            </div></td>
        </tr>
      </table>
      <%if rs("review")<>"" then
Response.Write  rs("review")%> <%else Response.Write "<br><p align=center>当前没有评论</p>"
end if%> <br> <%
rs.close
set rs=nothing
conn.close
set conn=nothing
%> <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td width="50%"><a href="javascript:self.close()">『关闭窗口』</a></td>
          <td width="50%"> <div align="right"><a href="addreview.asp?ID=<%=request("id")%>">发表评论</a> 
            </div></td>
        </tr>
      </table></td>
  </tr>
</table>
<table width="500" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>&nbsp;</td>
</tr>
</table>
<p class="nav">&nbsp;</p>

⌨️ 快捷键说明

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