hi,
i have an asp page with the following items that were created using a loop.
i want to use an existing javascript that calls different pages, to edit these fields (like non-zero price, non-blank item_nbr, non-zero qty, etc...)
how would i reference these fields, since they all have same names in this coding?
thanks for help.
i have an asp page with the following items that were created using a loop.
Code:
<tr>
<td><INPUT type="text" NAME="itmnbr" size=10></td>
<td><INPUT type="text" NAME="qty" size=10></td>
<td><INPUT type="text" NAME="itmprice" size=10></td>
</tr>
<tr>
<td><INPUT type="text" NAME="itmnbr" size=10></td>
<td><INPUT type="text" NAME="qty" size=10></td>
<td><INPUT type="text" NAME="itmprice" size=10></td>
</tr>
<tr>
<td><INPUT type="text" NAME="itmnbr" size=10></td>
<td><INPUT type="text" NAME="qty" size=10></td>
<td><INPUT type="text" NAME="itmprice" size=10></td>
</tr>
<tr>
<td><INPUT type="text" NAME="itmnbr" size=10></td>
<td><INPUT type="text" NAME="qty" size=10></td>
<td><INPUT type="text" NAME="itmprice" size=10></td>
</tr>
how would i reference these fields, since they all have same names in this coding?
thanks for help.