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

📄 listpl.asp

📁 php 语言写的c2c商城网站程序
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="webconfig.asp"-->
<html><head><title><%=webname%>--商品信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="images/css.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!--#include file="webtop.asp"-->
<%if IsNumeric(request.QueryString("id"))=False then
response.write("<script>alert(""非法访问!"");location.href=""index.asp"";</script>")
response.end
end if
dim id
id=request.QueryString("id")
if not isinteger(id) then
response.write"<script>alert(""非法访问!"");location.href=""index.asp"";</script>"
end if%>
<table width="760" align="center" border="0" cellspacing="0" cellpadding="0" class="table-zuoyou" bordercolor="#CCCCCC">
<tr> 
<td width="100%" valign="top" bordercolor="#FFFFFF" bgcolor="#FFFFFF" align="center"> 
<table width="100%" border="0" cellspacing="0" cellpadding="4" align="center">
          <%
		set rs=server.createobject("adodb.recordset")
		rs.open "select * from shop_books where bookid="&request("id"),conn,1,3
		if rs.recordcount>0 then
		spmx=rs("bookname")
		end if%>
		<tr><td colspan="3" background="images/class_bg.jpg" height=50> <img src="images/ring02.gif" width="23" height="15" align="absmiddle"> <a href=index.asp><%=webname%></a> >> 商品评论:</font><%=spmx%></td></tr>
        </table>
		<table width=100% align=center class=table-shang border=0 cellpadding=0 cellspacing=0 bgcolor=#f1f1f1>
		<TR>
		<TD bgColor=#ffffff colSpan=3 height=1></TD>
		<TR>
		<tr>
		<td align=center width=20% height=30>主 题</td>
		<td align=center width=60% height=30>内 容</td>
		<td align=center width=20% height=30>评 价</td>
		</tr>
		<TR>
		<TD bgColor=#cccccc colSpan=3 height=1></TD>
		</TR>
		<TR>
		<TD bgColor=#f1f1f1 colSpan=3 height=3></TD>
		</TR>
		</table><br>
        <%set rs=server.createobject("adodb.recordset")
		rs.open "select * from shop_pinglun where bookid="&request("id")&"  order by pinglunid desc",conn,1,1
		if rs.recordcount=0 then 
		%>
        <table width="370" border="0" cellspacing="0" cellpadding="5" align="center">
		<tr>
		<td align=center>暂无评论</td>
		</tr>
        </table>

        <%
		else
	  		rs.PageSize =10'每页记录条数
			iCount=rs.RecordCount '记录总数
			iPageSize=rs.PageSize
    		maxpage=rs.PageCount 
    		page=request("page")
    
    if Not IsNumeric(page) or page="" then
        page=1
    else
        page=cint(page)
    end if
    
    if page<1 then
        page=1
    elseif  page>maxpage then
        page=maxpage
    end if
    
    rs.AbsolutePage=Page

	if page=maxpage then
		x=iCount-(maxpage-1)*iPageSize
	else
		x=iPageSize
	end if
	%>
        <table width="95%" border="0" cellspacing="1" cellpadding="2" align="center" bgcolor="#cccccc">
          <%
			For i=1 To x
			%>
          <tr> 
            <td bgcolor="#ffffff"> 
              <table width="95%" border="0" align="center" cellspacing="2" cellpadding="1">
              <tr>
                <td width="80%" colspan="2"><b>主 题:</b><%=trim(rs("pingluntitle"))%></td>
                <td width="20%"><img src="images/level<%=rs("pingji")%>.gif"></td>
              </tr>
              <tr> 
                <td colspan="2"><b>作 者:</b><%=trim(rs("pinglunname"))%> (<%=trim(rs("pinglundate"))%>)</td>
                <td><%=trim(rs("ip"))%></td>
              </tr>
              <tr> 
                <td colspan="3"><b>内 容:</b><%if len(rs("pingluncontent"))>24 then 
							  response.write left(rs("pingluncontent"),20)&"...<a href=""pinglunll.asp?id="&rs("pinglunid")&""" title="&trim(rs("pingluntitle"))&">[详细内容]</a>" 
							  else response.write rs("pingluncontent")
							  end if%>
                </td>
              </tr>
              <%if trim(rs("huifu"))<>"" then%>
              <tr> 
                <td colspan="3"><b><font color="#CC3333">回 复:</font></b><%=rs("huifu")%> 
                </td>
              </tr>
              <%end if%>
              <tr background="images/bj_x1.gif"> 
                <td height=1 colspan=4></td>
              </tr>
            </table>
            </td>
          </tr>
          <%
			rs.movenext
		    next
			%>
        </table><br>
<!--#include file="pinglun.asp"-->
        <%
		call PageControl(iCount,maxpage,page,"border=0 align=center","<p align=center>")
		end if
		rs.close
		set rs=nothing
Sub PageControl(iCount,pagecount,page,table_style,font_style)
'生成上一页下一页链接
    Dim query, a, x, temp
    action = "http://" & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("SCRIPT_NAME")

    query = Split(Request.ServerVariables("QUERY_STRING"), "&")
    For Each x In query
        a = Split(x, "=")
        If StrComp(a(0), "page", vbTextCompare) <> 0 Then
            temp = temp & a(0) & "=" & a(1) & "&"
        End If
    Next

    Response.Write("<table " & Table_style & ">" & vbCrLf )        
    Response.Write("<form method=get onsubmit=""document.location = '" & action & "?" & temp & "Page='+ this.page.value;return false;""><TR>" & vbCrLf )
    Response.Write("<TD align=right>" & vbCrLf )
    Response.Write(font_style & vbCrLf )    
        
    if page<=1 then
        Response.Write ("首页 " & vbCrLf)        
        Response.Write ("上页 " & vbCrLf)
    else        
        Response.Write("<A HREF=" & action & "?" & temp & "Page=1>首页</A> " & vbCrLf)
        Response.Write("<A HREF=" & action & "?" & temp & "Page=" & (Page-1) & ">上页</A> " & vbCrLf)
    end if

    if page>=pagecount then
        Response.Write ("下页 " & vbCrLf)
        Response.Write ("尾页 " & vbCrLf)            
    else
        Response.Write("<A HREF=" & action & "?" & temp & "Page=" & (Page+1) & ">下页</A> " & vbCrLf)
        Response.Write("<A HREF=" & action & "?" & temp & "Page=" & pagecount & ">尾页</A> " & vbCrLf)            
    end if

    Response.Write(" 页次:" & page & "/" & pageCount & "页" &  vbCrLf)
    Response.Write(" 共有" & iCount & "种商品" &  vbCrLf)
    Response.Write(" 转到" & "<INPUT TYEP=TEXT NAME=page SIZE=1 Maxlength=5 VALUE=" & page & ">" & "页"  & vbCrLf & "<INPUT type=submit style=""font-size: 9pt"" value=GO class=b2>")
    Response.Write("</TD>" & vbCrLf )                
    Response.Write("</TR></form>" & vbCrLf )        
    Response.Write("</table>" & vbCrLf )        
End Sub
%>
</td>
</tr>
</table>
<!--#include file="service.asp"-->
<!--#include file="copyright.asp"-->
</body>
</html>

⌨️ 快捷键说明

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