ASP判断ID的语句该怎么写?谢谢了!
<div class="productclass_dolphin"><%
dim rse,did
set rse=server.CreateObject("adodb.recordset")
rse.open "select * from shop_fl where sid = 0 order by px_id asc",conn,1,1
while not rse.eof
did = rse("id")
%>
<a href="<%=root%>/products/shopmore.asp?id=<%=rse("id")%>" class="productclass_dolphin"><%=rse("title")%></a>
<%
这个段代码是读出ID 生成 <a href="<%=root%>/products/shopmore.asp?id=<%=rse("id")%>" class="productclass_dolphin"><%=rse("title")%></a> 这段连接来
我想写 判断ID后 生成不同的productclass_dolphin 样式表! 这个该怎么写呀 谁能给个例子,谢谢了 例如class="productclass_dolphin class="productclass_dolphin2 .........等