📄 productlist.asp
字号:
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 px asc "
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='132' align='left'>"
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"&LangData))<=18 then
ProductName=rs("ProductName"&LangData)
else
ProductName=StrLeft(rs("ProductName"&LangData),16)
end if
SmallPicPath=HtmlSmallPic(rs("GroupID"),rs("SmallPic"),rs("Exclusive"))
response.write "<table border='0' cellpadding='0' cellspacing='0' >" &_
"<tr><td align='center' width='132' height='132' style='text-decoration: underline; " &_
"border: 1px solid #CCCCCC;'><a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>" &_
"<img src='"&SmallPicPath&"' border='0' width='130' height='130' onload='javascript:DrawImage(this,130,130);'></a>" &_
"</td></tr><tr><td height='36' align='center'><img src='Images/Arrow_01.gif' width='14' height='11'" &_
" align='absmiddle'> <a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>"&ProductName&"</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
elseif request.cookies("Style")="List" then'列表显示方式
for R=1 to 5
Response.Write "<tr>" & vbCrLf
for C=1 to 2 '填充数据到表格
if C=1 then
Response.write"<td width='50%' align='left'>"
else
Response.write"<td width='50%' align='right'>"
end if
if StrLen(rs("ProductName"&LangData))<=28 then
ProductName=rs("ProductName"&LangData)
else
ProductName=StrLeft(rs("ProductName"&LangData),26)
end if
SmallPicPath=HtmlSmallPic(rs("GroupID"),rs("SmallPic"),rs("Exclusive"))
response.write "<table width='298' border='0' cellpadding='2' cellspacing='0' style='table-layout:fixed'>" &_
"<tr><td align='center' width='100' height='100' rowspan='6' style='text-decoration: underline; " &_
"border: 1px solid #CCCCCC;'><a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>" &_
"<img src='"&SmallPicPath&"' border='0' width='94' height='94' onload='javascript:DrawImage(this,94,94);'></a></td>" &_
"<td width='4' rowspan='6'></td>" &_
"<td style='width:194;height:24;' bgcolor='#EEEEEE'> <img src='Images/Arrow_04.gif' align='absmiddle'> <a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>"&ProductName&"</a></td></tr>" &_
"<tr><td height='4'></td></tr>" &_
"<tr><td style='width:194;height:18;' bgcolor='#FFFFFF'> 编号:"&rs("ProductNo")&"</td></tr>" &_
"<tr><td style='width:194;height:18;' bgcolor='#FFFFFF'> 价格:"&rs("Price"&LangData)&"</td></tr>" &_
"<tr><td style='width:194;height:18;' bgcolor='#FFFFFF'> 厂商:"&rs("Maker"&LangData)&"</td></tr>" &_
"<tr><td style='width:194;height:18;' bgcolor='#FFFFFF'> 日期:"&rs("AddTime")&"</td></tr>" &_
"<tr><td height='12' colspan='3'></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
elseif request.cookies("Style")="Brief" then'简介显示方式
while not rs.eof '填充数据到表格
Response.write"<tr>"
Response.write"<td>"
ProductName=rs("ProductName"&LangData)
Content=rs("Content"&LangData)
SmallPicPath=HtmlSmallPic(rs("GroupID"),rs("SmallPic"),rs("Exclusive"))
Response.write "<table width='100%' border='0' cellpadding='0' cellspacing='0' style='table-layout:fixed'>" &_
"<tr><td align='center' rowspan='3' width='110' height='110' style='text-decoration: underline; " &_
"border: 1px solid #CCCCCC;'><a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>" &_
"<img src='"&SmallPicPath&"' border='0' width='108' height='108' " &_
"onload='javascript:DrawImage(this,108,108);'></a></td>" &_
"<td width='6' rowspan='3'></td>" &_
"<td height='24' bgcolor='#EEEEEE'> <img src='Images/Arrow_04.gif' align='absmiddle'> " &_
"<a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'>"&ProductName&"</a></td>" &_
"<td width='56' bgcolor='#EEEEEE'><a href='ProductView.asp?ID="&rs("id")&"&SortID="&rs("SortID")&"'><img src='Images/Button_view_01.gif' align='absmiddle' border='0'></a></td></tr>" &_
"<tr><td height='6' colspan='2'></td></tr>" &_
"<tr><td colspan='2' style='width:490;height:78;word-wrap:break-word;' bgcolor='#FFFFFF' valign='top'>"&Content&"</td></tr><tr><td height='20' colspan='4'></td></tr></table>"
Response.write "</td>"
Response.Write "</tr>"
rs.movenext
wend
end if
else
response.write "<tr><td align='center'>暂无相关信息</td></tr></table>"
exit function
end if
Response.Write "<tr>" & vbCrLf
if request.cookies("Style")="Shopwindow" or request.cookies("Style")="" then
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
elseif request.cookies("Style")="List" then
Response.Write "<td colspan='2' background='Images/Point_line_03.gif' height='12'></td></tr>" & vbCrLf
Response.Write "<tr><td colspan='2' align='right'>" & vbCrLf
elseif request.cookies("Style")="Brief" then
Response.Write "<td background='Images/Point_line_03.gif' height='12'></td></tr>" & vbCrLf
Response.Write "<tr><td align='right'>" & vbCrLf
end if
Response.Write "共计:<font color='#ff6600'>"&idcount&"</font>条记录 页次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&" 每页:<font color='#ff6600'>"&pages&"</font>条 " & 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> ") '如果页码大于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> ") '如果页码开始值大于1则显示(更前)
if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
for i = pagenmin to pagenmax'循环输出页码
if(i=page) then
response.write (" <font color='#ff6600'>"& i &"</font> ")
else
response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
end if
next
if(pagenmax<pagec) then response.write (" <a href='"& myself &"Page="& page+(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>8</font></a> ") '如果页码结束值小于总页数则显示(更后)
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 + -