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

📄 productlist.asp

📁 修改迅易在线评选管理系统,,功能能用,下载的迅易功能不全,
💻 ASP
字号:
<!--#include file="Head.asp"-->
<div align="center">
  <table width="900" border="0" cellspacing="0" cellpadding="0" class="Outside">
    <tr>
      <td width="209" height="300" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="1">
        <tr>
          <td><img src="../Images/vote.gif" width="209" height="30"></td>
        </tr>
      </table>
        <table width="100%" border="0" cellspacing="0" cellpadding="1">
          <tr>
            <td><%TopVote()%></td>
          </tr>
        </table>
        <table width="100%" border="0" cellspacing="0" cellpadding="1">
          <tr>
            <td><img src="../Images/news.gif" width="209" height="30"></td>
          </tr>
        </table>
        <table width="100%" border="0" cellspacing="0" cellpadding="1">
          <tr>
            <td><%TopNews()%></td>
          </tr>
        </table></td>
      <td width="1" valign="top" bgcolor="#000000"></td>
      <td width="690" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="30" height="32" align="center">&nbsp;</td>
          <td class="Location"><a href="../index.asp">首页</a><img src="../Images/Arrow_02.gif" width="13" height="12" align="absmiddle"><a href='ProductList.asp'>参赛人物</a>
              <% if not request.QueryString("SortID")="" then WebLocation(request.QueryString("SortID")) %></td>
          <td width="80" class="Location"></td>
        </tr>
      </table>
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td align="center"><% =WebMenu("ameav_ProductSort",0)%></td>
          </tr>
        </table>
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td height="12"></td>
          </tr>
          <tr>
            <td><%=ContentList()%></td>
          </tr>
          <tr>
            <td height="30"></td>
          </tr>
        </table></td>
    </tr>
  </table>
</div>
<%
Function WebMenu(DataFrom,ID)
  Dim rs,sql
  Set rs=server.CreateObject("adodb.recordset")
  sql="Select * From "&DataFrom&" where ParentID="&id&" and ViewFlag order by id"
  rs.open sql,conn,1,1
  response.write("<table width='98%' border='0' cellspacing='0' cellpadding='0'><tr class='WebMenu'>")
  if id=0 and rs.bof and rs.eof then
    response.write "<td align='center'>暂无相关信息</td></tr>"
  else
    while not rs.eof
      response.write ""
      response.write "<td  align='center'><a href='ProductList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a></td>"
      rs.movenext
	wend
  end if
  response.write("</tr></table>")
  rs.close
  set rs=nothing
end function

Function WebLocation(ID)
  Dim rs,sql,LocationText
  Set rs=server.CreateObject("adodb.recordset")
  sql="Select * From ameav_ProductSort where ViewFlag and ID="&ID
  rs.open sql,conn,1,1
  if rs.bof and rs.eof then
    response.write "<img src='../Images/Arrow_02.gif' align='absmiddle'>错误"
    exit function
  end if
  LocationText="<img src='../Images/Arrow_02.gif' align='absmiddle'><a href='ProductList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a>"
  if rs("ParentID")<>0 then WebLocation rs("ParentID")
  response.write LocationText
End Function

function ChildSort()
  dim ParentID
  ParentID=request.QueryString("SortID")
  if ParentID="" or (not isnumeric(ParentID)) then exit function
  dim rs,sql
  set rs = server.createobject("adodb.recordset")
  sql="select * from ameav_ProductSort where ViewFlag and ParentID="&ParentID&" order by ID desc"
  rs.open sql,conn,1,1
  if rs.bof and rs.eof then
    exit function
  else
    response.write "<tr><td width='30'></td><td height='22'></td><td class='ListTitle' align='center'>"
	while not rs.eof
	response.write "&nbsp;<font color='#FF0000'>|</font>&nbsp;<a href='ProductList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a>&nbsp;<font color='#FF0000'>|</font>"
	rs.movenext
	wend
    response.write "</td><td width='30'></td></tr>"    
  end if
  rs.close
  set rs=nothing
end function

function ContentList()
  dim SortPath,ProductNo,ClickNumber
      SortPath=request.QueryString("SortPath")
  dim idCount'记录总数
  dim pages'每页条数
      pages=12
  dim pagec'总页数
  dim page'页码
      page=clng(request("Page"))
  dim pagenc'每页显示的分页页码数量=pagenc*2+1
      pagenc=2
  dim pagenmax'每页显示的分页的最大页码
  dim pagenmin'每页显示的分页的最小页码
  dim datafrom'数据表名
      datafrom="ameav_Products"
  dim datawhere'数据条件
      if SortPath<>"" then'是否查看的分类产品
		 datawhere="where ViewFlag and Instr(SortPath,'"&SortPath&"')>0 "
      else
		 datawhere="where ViewFlag "
	  end if
  dim sqlid'本页需要用到的id
  dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
      PATH_INFO = request.servervariables("PATH_INFO")
	  QUERY_STRING = request.ServerVariables("QUERY_STRING")'
      if QUERY_STRING = "" then
	    Myself = PATH_INFO & "?"
	  elseif Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
	    Myself= PATH_INFO & "?" & QUERY_STRING & "&"
	  else
	    Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
	  end if
  dim taxis'排序的语句 asc,desc
      taxis="order by ClickNumber desc "
  dim i'用于循环的整数
  dim rs,sql'sql语句
  '获取记录总数
  sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
  set rs=server.createobject("adodb.recordset")
  rs.open sql,conn,0,1
  idCount=rs("idCount")
  '获取记录总数

  if(idcount>0) then'如果记录总数=0,则不处理
    if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
	  pagec=int(idcount/pages)'获取总页数
   	else
      pagec=int(idcount/pages)+1'获取总页数
    end if
	'获取本页需要用到的id============================================
    '读取所有记录的id数值,因为只有id所以速度很快
    sql="select id from ["& datafrom &"] " & datawhere & taxis
    set rs=server.createobject("adodb.recordset")
    rs.open sql,conn,1,1
    rs.pagesize = pages '每页显示记录数
    if page < 1 then page = 1
    if page > pagec then page = pagec
    if pagec > 0 then rs.absolutepage = page  
    for i=1 to rs.pagesize
	  if rs.eof then exit for  
	  if(i=1)then
	    sqlid=rs("id")
	  else
	    sqlid=sqlid &","&rs("id")
	  end if
	  rs.movenext
    next
  '获取本页需要用到的id结束============================================
  end if
  Response.Write "<table width='100%' border='0' cellspacing='0' cellpadding='0'>"
  if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
    '用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
    sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
    set rs=server.createobject("adodb.recordset")
    rs.open sql,conn,0,1
	dim ProductName,SmallPicPath,Content
    if request.cookies("Style")="Shopwindow" or request.cookies("Style")="" then'橱窗方式显示
	  dim R,C'显示行数和列数
	  for R=1 to 3
	    Response.Write "<tr>" & vbCrLf
        for C=1 to 4 '填充数据到表格
		  if C=1 or C=4 then
	        Response.write"<td width='160' align='center'>"
		  elseif C=2 then
	        Response.write"<td width='158' align='right'>"
		  elseif C=3 then
	        Response.write"<td width='182' align='center'>"
		  end if
	      if StrLen(rs("ProductName"))<=18 then
            ProductName=rs("ProductName")
	      else 
	        ProductName=StrLeft(rs("ProductName"),16)
	      end if
	      SmallPicPath=HtmlSmallPic(rs("GroupID"),rs("SmallPic"),rs("Exclusive"))
		  ProductNo=rs("ProductNo")
		  ClickNumber=rs("ClickNumber")
          response.write "<table border='0' cellpadding='0' cellspacing='0' >" &_
	                     "<tr><td align='center'  width='142' height='112' style='text-decoration: underline; " &_
				    	 "border: 1px solid #336699;'><a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>" &_
				    	 "<img src='"&SmallPicPath&"' border='0' width='130' height='100' ></a>" &_
					     "</td></tr><tr  width='140'><td height='36' align='center'>"&ProductNo&"号--<font color=red>"&ClickNumber&"票</font><br><a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>"&ProductName&"</a>&nbsp;&nbsp;"
	  				if memclock=1 then
					if session("MemName")="" then
	  response.write "<a href=# onClick='Confirmst();'>投票</a>"
					else
	  response.write "<a href='PhotoVote.asp?id="&rs("id")&"&name="&rs("ProductName")&"'>投票</a>"
	  				end if
					else
	  response.write "<a href='PhotoVote.asp?id="&rs("id")&"&name="&rs("ProductName")&"'>投票</a>"
					end if	
		  response.write "&nbsp;&nbsp;<a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"&#pl'>评论</a></td></tr></table>"
		  response.write"</td>"
	      rs.movenext
		  if rs.eof then exit for
		next
	    Response.Write "</tr>" & vbCrLf
		if rs.eof then exit for
	  next
	end if 
  else
    response.write "<tr><td align='center'>暂无相关信息</td></tr></table>"
	exit function
  end if
  
  Response.Write "<tr>" & vbCrLf
  Response.Write "<td colspan='4' background='../Images/Point_line_03.gif' height='8'></td></tr>" & vbCrLf
  Response.Write "<tr><td colspan='4' align='right'>" & vbCrLf
  Response.Write "共计:<font color='#ff6600'>"&idcount&"</font>条记录&nbsp;页次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&"&nbsp;每页:<font color='#ff6600'>"&pages&"</font>条&nbsp;&nbsp;&nbsp;&nbsp;" & vbCrLf
  pagenmin=page-pagenc '计算页码开始值
  pagenmax=page+pagenc '计算页码结束值
  if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
  if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a>&nbsp;") '如果页码大于1则显示(第一页)
  if(pagenmin>1) then response.write ("<a href='"& myself &"Page="& page-(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>7</font></a>&nbsp;") '如果页码开始值大于1则显示(更前)
  if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
  for i = pagenmin to pagenmax'循环输出页码
	if(i=page) then
	  response.write ("&nbsp;<font color='#ff6600'>"& i &"</font>&nbsp;")
	else
	  response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
	end if
  next
  if(pagenmax<pagec) then response.write ("&nbsp;<a href='"& myself &"Page="& page+(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>8</font></a>&nbsp;") '如果页码结束值小于总页数则显示(更后)
  if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a>") '如果页码小于总页数则显示(最后页)	
  Response.Write "</td>" & vbCrLf
  Response.Write "</tr>" & vbCrLf
  Response.Write "</table>" & vbCrLf
  rs.close
  set rs=nothing
end function 
%>
<!--#include file="Foot.asp"-->

⌨️ 快捷键说明

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