|
Re: subtotals and totals
the items in the drop down menu are randomally generated by a variable.
i tried this code:
<% phoneQty<%=item%> = Request.form("phoneQty<%=item%>") %>
But it gave me an error page could not be displayed. Is there something wrong in the syntax.
<tr>
<td colspan=2 nowrap id="phoneSec<%=item%>" name="phoneSec<%=item%>">
<font class="smallBody">Select Quantity:</font>
<select name="phoneQty<%=item%>">
<% for i=0 to AllowedPhones%>
<option value="<%=i%>" <%if phoneQty(item)=i then%>selected<%end if%>><%=i%></option>
<%next%>
</select>
</td>
</tr>
|