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

📄 jetway.asp

📁 21世纪人才www.51zy.net 网站源码
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="webconfig.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=webname%>-商品分类</title>
<link href="css/main.css" rel="stylesheet" type="text/css" />
</head>

<body>
<!-- 导航菜单 -->
<!--#include file="top.asp" -->
<div id="content">
	<!-- 快捷导航 -->
	<div id="content_m"><a href="index.asp">首页</a> &gt; <span class="new">商品分类</span></div>
	<!-- 无边栏 -->
	<div id="content_lr">
	<%
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from shop_anclass order by anclassidorder",conn,1,1
if rs.recordcount=0 then
response.write "目前没有商品分类"
else
while not rs.eof%>
	<h1><a href="class.asp?lx=big&anid=<%=rs("anclassid")%>"><%=rs("anclass")%></a></h1>
	<%
set rs_s=server.CreateObject("adodb.recordset")
rs_s.open "select * from shop_nclass where anclassid="&rs("anclassid")&" order by nclassidorder",conn,1,1
if rs_s.recordcount=0 then%>暂无小分类
<%else
response.Write "<p>"
i=0
while not rs_s.eof
%><a href="class.asp?lx=small&amp;anid=<%=rs("anclassid")%>&amp;nid=<%=rs_s("nclassid")%>"><%=rs_s("nclass")%></a> 
<%rs_s.movenext
wend
response.Write "</p><div class=""clear-both"">&nbsp;</div>"
end if
rs_s.close
set rs_s=nothing
rs.movenext
wend
end if
rs.close
set rs=nothing
%>
	</div>
</div>
<div class="clear-both">&nbsp;</div>
<!-- 服务声明 -->
<!--#include file="service.asp" -->
<!-- 版权信息 -->
<!--#include file="copyright.asp" -->
</body>
</html>

⌨️ 快捷键说明

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