一段asp代码求解说,各位大侠指点下。谢谢
<%setrs=conn.execute("selecttop4*fromproductwherepic1<>''orderbyxhdesc,iddesc")dowhil...
<%
set rs=conn.execute("select top 4 * from product where pic1<>'' order by xh desc, id desc")
do while not rs.eof
pic=rs("pic1")
if yt=1 and rs("pics")<>"" then pic=rs("pics")
%>
<div class="cplist">
<a title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
<img alt="<%=rs("title")%>" src="<%=pic%>" /></a><p>
<a style="color:<%=rs("color")%>" title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
<%=gotTopic(rs("title"),22)%></a></p></div>
<%
rs.movenext
loop
rs.close
set rs=nothing
%> 展开
set rs=conn.execute("select top 4 * from product where pic1<>'' order by xh desc, id desc")
do while not rs.eof
pic=rs("pic1")
if yt=1 and rs("pics")<>"" then pic=rs("pics")
%>
<div class="cplist">
<a title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
<img alt="<%=rs("title")%>" src="<%=pic%>" /></a><p>
<a style="color:<%=rs("color")%>" title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
<%=gotTopic(rs("title"),22)%></a></p></div>
<%
rs.movenext
loop
rs.close
set rs=nothing
%> 展开
2个回答
展开全部
<%
set rs=conn.execute("select top 4 * from product where pic1<>'' order by xh desc, id desc")------选出前四个有图片的产品记录,按照型号+ID排序
do while not rs.eof-----开始循环记录集
pic=rs("pic1") -----将图片地址赋到变量pic中
if yt=1 and rs("pics")<>"" then pic=rs("pics")-----如果yt=1并且pics字段不为空,则用pics的值替换pic变量
%>
<div class="cplist">------ 输出一个div层
<a title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">------写入一个链接,title为产品的名称,地址为html/showproduct_id.html
<img alt="<%=rs("title")%>" src="<%=pic%>" /></a><p>-----输出图片,文字为产品名称,地址为pic变量中的内容
<a style="color:<%=rs("color")%>" title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">------再写入一个文字链接,颜色用记录集中的颜色定义,title为产品名称,地址为html/showproduct_id.html,同上
<%=gotTopic(rs("title"),22)%></a></p></div>-----输出产品的名称,并使用gottopic函数修饰
<%
rs.movenext------移动到下一条记录中
loop------回到循环开始位置
rs.close-----关闭记录集
set rs=nothing-----释放内存
%>
set rs=conn.execute("select top 4 * from product where pic1<>'' order by xh desc, id desc")------选出前四个有图片的产品记录,按照型号+ID排序
do while not rs.eof-----开始循环记录集
pic=rs("pic1") -----将图片地址赋到变量pic中
if yt=1 and rs("pics")<>"" then pic=rs("pics")-----如果yt=1并且pics字段不为空,则用pics的值替换pic变量
%>
<div class="cplist">------ 输出一个div层
<a title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">------写入一个链接,title为产品的名称,地址为html/showproduct_id.html
<img alt="<%=rs("title")%>" src="<%=pic%>" /></a><p>-----输出图片,文字为产品名称,地址为pic变量中的内容
<a style="color:<%=rs("color")%>" title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">------再写入一个文字链接,颜色用记录集中的颜色定义,title为产品名称,地址为html/showproduct_id.html,同上
<%=gotTopic(rs("title"),22)%></a></p></div>-----输出产品的名称,并使用gottopic函数修饰
<%
rs.movenext------移动到下一条记录中
loop------回到循环开始位置
rs.close-----关闭记录集
set rs=nothing-----释放内存
%>
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
展开全部
set rs=conn.execute("select top 4 * from product where pic1<>'' order by xh desc, id desc")
从数据 PRODUCT表中取4条数据
do while not rs.eof
循环显示出来
<div class="cplist">
<a title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
<img alt="<%=rs("title")%>" src="<%=pic%>" /></a><p>
<a style="color:<%=rs("color")%>" title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
rs.movenext 移动到下条记录
loop 回到首页循环
rs.close
set rs=nothing 关闭RS 记录集
<%=gotTopic(rs("title"),22)%></a></p></div>
显示产品图片, 产品名称, 并链接到详细的产品信息页面
从数据 PRODUCT表中取4条数据
do while not rs.eof
循环显示出来
<div class="cplist">
<a title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
<img alt="<%=rs("title")%>" src="<%=pic%>" /></a><p>
<a style="color:<%=rs("color")%>" title="<%=rs("title")%>" href="html/showproduct<%=rs("id")%>.html">
rs.movenext 移动到下条记录
loop 回到首页循环
rs.close
set rs=nothing 关闭RS 记录集
<%=gotTopic(rs("title"),22)%></a></p></div>
显示产品图片, 产品名称, 并链接到详细的产品信息页面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询