Hi,
I have the following code currently in ASP which calls up 5 different category IDs from a db and displays the entries under each of these IDs:
<tr>
<%
if not rsCategory.eof then
do until rsCategory.eof
%>
<td class="sysmall"><a href="./art.asp?Cat=<%=rsCategory("DesignCat"%>"><img src="../images/<%=rsCategory("FirstOfDesignIcon"%>" border="0"></a></td>
<%
rsCategory.movenext
loop
end if
%>
</tr>
I'd like to translate this into Flash scripting for a button that represents each category, where clicking on each flash button brings up the category entries for each ID.
If anyone could help I would be very grateful!
Thanks for your time.
I have the following code currently in ASP which calls up 5 different category IDs from a db and displays the entries under each of these IDs:
<tr>
<%
if not rsCategory.eof then
do until rsCategory.eof
%>
<td class="sysmall"><a href="./art.asp?Cat=<%=rsCategory("DesignCat"%>"><img src="../images/<%=rsCategory("FirstOfDesignIcon"%>" border="0"></a></td>
<%
rsCategory.movenext
loop
end if
%>
</tr>
I'd like to translate this into Flash scripting for a button that represents each category, where clicking on each flash button brings up the category entries for each ID.
If anyone could help I would be very grateful!
Thanks for your time.