Java - variable auxiliar jsp

 
Vista:

variable auxiliar jsp

Publicado por maria (3 intervenciones) el 08/08/2007 17:10:58
tengo el siguiente codigo, como puedo guardar en una variable auxiliar el valor de taxvalue?? muchas gracias de antemano

<select name='taxtype' class="body" onChange="changeTax(this,document.invoiceDetails.taxvalue,Opciones)">

<%for(int i=0;i<taxTypes.size();i++){ String tax=(String)taxTypes.elementAt(i);%>

<option value="<%=tax%>" <%if (tax.equals(taxtype)){%>selected<%}%>> <%=tax%> </option>
<%}%>
</select>
</td>
</tr>
<tr>
<td width="20%" class="body">Precio unidad(*):</td>
<td width="30%"><input type="text" name="price" value="<%=price%>" size="35" maxlength="100" class="Body" <%-- onblur="checkDecimalNumber()" --%>></td>

<td width="5%" class="body"><img src="../images/clear.gif" height="15" border="0"></td>
<td width="15%" class="body">Tipo impositivo(*):</td>
<td width="30%">
<select name="taxvalue" class="body"></select>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder