Date:  07/03/2008 12:21:54 PM Msg ID:  003759
From:  Jeff Grippe Thread:  003759
Subject:  SELECT / OPTION for a table based form
Hi, thanks for the help

Suppose I have an HTML table that is on a form and populated by a cursor...

Suppose I want to use a SELECT / OPTION tag to allow the user to update information in multiple records...

How do you deal with the "NAME" property?

If I were to code

<%SCAN%>
<TR>
<TD>
<SELECT NAME="ACTION">
<OPTION VALUE="FIRST">FIRST OPTION</OPTION>
<OPTION VALUE="SECOND">SECOND OPTION</OPTION>
</OPTION>
</TD>
</TR>
<%ENDSCAN%>

Then every select option group would update the same form variable.

Is there a good way to do this?

Thanks,
Jeff