📄 splist.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Inc/Dataconn.asp" -->
<!--#include file="Inc/Funcs.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>查看商品</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<link href="Inc/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="612" height="450" border="0" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td valign="top" bgcolor="#FFFFFF">
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td height="25" background="Images/tbtitle1.jpg"> 点击商品类别查看该类别下商品</td>
</tr>
<%
SQLStr="Select * from LB"
rS.Open SQLStr,conn,1,1
%>
<tr>
<td height="20" bgcolor="#FFFFFF" class="Txt">
<%For i=1 to rS.RecordCount%>
<a href="SPList.asp?ShowAction=ShowSPList&SPLBID=<%=rS(0)%>"><%=rS(1)%></a> |
<%rs.movenext
next
rS.close
%>
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<%if request.querystring("ShowAction")="ShowSPList" then%>
<tr>
<td height="20" background="Images/tbtitle1.jpg" bgcolor="#FFFFFF" class="Txt"> 以下是“<%=GetLBNameByLBID(request.querystring("SPLBID"))%>”的所有商品</td>
</tr>
<%
SPLBID=request.querystring("SPLBID")
SQLStr="Select * from SP Where SPLBID="&SPLBID
rS.Open SQLStr,conn,1,1
%>
<tr>
<td height="25" bgcolor="#FFFFFF" class="Txt"> <%if rS.recordcount=0 then%>此类别下无商品<%end if%>
<%For i=1 to rS.RecordCount%>
<a href="ViewSP.asp?SPID=<%=rS(0)%>"><%=rS(1)%></a> |
<%rs.movenext
next
rS.close
%>
</td>
</tr>
<%end if%>
</table>
<br>
<center><a href="<%=request.serverVariables("HTTP_REFERER")%>" class="Txt">返回上一页</a>
</center>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -