📄 buyzhinan.asp
字号:
<!--
┌─ shopxp.cn──────────────┐
│ 免费版难免存在不足,建议你使用正式版 │
│ 正式版用户提供免费升级24小时内排除故障│
│ 请到www.shopxp.cn进行前台和后台的测试 │
│ 热线:010-69209701-801 QQ:83107971 │
└────────────────────┘
-->
<!--#include file="conn/conn.asp"-->
<!--#include file="conn/webconfig.asp"-->
<html><head><title>购物指南--<%=webname%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="img/css.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!--#include file="webtop.asp"-->
<table width="50%" height="2" border="0" cellpadding="0" cellspacing="0">
<tr>
<td></td>
</tr>
</table>
<table width="100%" height="67" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="92%"><table width="99%" height="103" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><img src="img/xiao/tit_cart.gif" width="910" height="114"></td>
</tr>
</table></td>
<td width="8%"> </td>
</tr>
</table>
<table width="99%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="92%"><table width="100%" height="145" border="0" align="center" cellpadding="0" cellspacing="0">
<TR>
<TD width="188" align="center" vAlign=top class=b ><table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
<td valign=top class=b><!--#include file="info/info_fenlei.asp" --></td>
</tr>
<TR>
<TD vAlign=top class=b> </TD>
</TR>
<TR>
<TD vAlign=top class=b> </TD>
</TR>
<tr>
</table></TD>
<td width="14" background="img/xiao/bg_body.gif"></td>
<TD align=left vAlign=top class=b><div align="center">
<table width="10" height="5" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
</tr>
</table>
<!--#include file="info/info_newgtou.asp" -->
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="23"><img src="img/xiao/buyzhinan.gif" width="151" height="21"></td>
</tr>
<tr>
<td height="1" background="img/xiao/linedot.gif"></td>
</tr>
</table>
<table width="98%" align="center" border="0" cellspacing="0" cellpadding="0" ">
<tr>
<td background="img/class_bg.jpg" height=26> </td>
</tr>
<tr>
<td width="50%" valign="top" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><%set rs=server.createobject("adodb.recordset")
rs.open "select * from zhuanti order by newsid desc",conn,1,1
if rs.recordcount=0 then
%>
<table width="100%" 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="100%" border="0" cellspacing="0" cellpadding="5" align="center">
<%
For i=1 To x
%>
<tr>
<td align=center height=24 width="10%" ><img src="img/ring01.gif"></td>
<td height=24 width="80%"><a href=listzt.asp?id=<%=rs("newsid")%> > <%=replace(trim(rs("title")),"<br>","")%></a></td>
<td align=center height=24 width="20%" ><%=year(rs("updatetime"))&"."&month(rs("updatetime"))&"."&day(rs("updatetime"))%></td>
</tr>
<%
rs.movenext
next
%>
</table>
<%
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 width=100% border=0 cellpadding=0 cellspacing=0 >" & vbCrLf )
Response.Write("<form method=get onsubmit=""document.location = '" & action & "?" & temp & "Page='+ this.page.value;return false;""><TR>" & vbCrLf )
Response.Write("<TD align=center height=35>" & 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 CLASS=wenbenkuang NAME=page SIZE=2 Maxlength=5 VALUE=" & page & ">" & "页" & vbCrLf & "<INPUT CLASS=go-wenbenkuang type=submit value=GO>")
Response.Write("</TD>" & vbCrLf )
Response.Write("</TR></form>" & vbCrLf )
Response.Write("</table>" & vbCrLf )
End Sub
%>
</td>
</tr>
</table></TD>
<td width="1" background="img/xiao/bgbg.gif"></td>
</TR>
</TABLE></td>
<td width="8%"> </td>
</tr>
</table>
<!--#include file="copyright.asp" -->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -