Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Small ASP code to be translated into Flash 4

Status
Not open for further replies.

TheDemon

Programmer
Feb 7, 2000
108
GB
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=&quot;sysmall&quot;><a href=&quot;./art.asp?Cat=<%=rsCategory(&quot;DesignCat&quot;)%>&quot;><img src=&quot;../images/<%=rsCategory(&quot;FirstOfDesignIcon&quot;)%>&quot; border=&quot;0&quot;></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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top