|
|
" width="433" height="30"> |
| :: Specification
Download :: |
| |
<%
qryBand = "select * from bands where grp_id = "& grp_id &""
set rsBand = conn.execute(qryBand)
do while not rsBand.eof
%>
| <%=rsBand("band_name")%> |
<%
qrySDL = "select * from products where band_id = "& rsBand("band_id") &""
set rsSDL = conn.execute(qrySDL)
do while not rsSDL.eof
if len(rsSDL("prod_specName")) > 0 then
%>
| |
|
|
" target="_blank">
<%=rsSDL("prod_specName")%> |
<%
end if
rsSDL.movenext:loop
set rsSDL = nothing
%>
| |
|
<%
rsBand.movenext:loop
set rsBand = nothing
%> |
| |
| |
|
|