Inside server side tags <%
I have a recordset built using adodb on an asp page.

I put all sectionnames into an array sectname()
%>

This works great....now's the part I can't get.

I need to loop through the values in sectname and place each one in a
cell
on a table.

This is what I tried
I set up my table then put
for n = 0 to ubound(secname()-1)
<td width="50%"><%sectname(n)%>
next

It doesn't work........what do I need to do????