|

<%
set myrs_type=server.createobject("adodb.recordset")
myrs_type.open "select id,typename from t_product_type where mever='" & current_ver & "' order by id",conn,3,1
%>
 |
产品搜索
|
 |
|
|
 |

| |
|
<%
catalog_width="13%" '显示分类名的宽度
if myrs_type.recordcount<>0 then
myrs_type.MoveFirst
%>
 |
<%do until myrs_type.eof
Response.Write "" & myrs_type("typename") & " "
myrs_type.movenext
loop%>
|
<%end if%>
|

|