Luego al enviar el formulario envio tres campos ocultos ITEM_ID, ITEM_NAME Y ITEM_PRICE y necesitaba en ese campo ITEM_PRICE meterle en el value el valor de la caja de texto txtTotal que es donde tengo el total.
Código:
Intenter ponerle al value de ITEM_PRICE sin éxito:<form method="POST" name="formulario" action="!MYURL!"> TOTAL:<input name="txtTotal" id="txtTotal" type="text"> <input type="hidden" name="ITEM_ID" value="123"> <input type="hidden" name="ITEM_NAME" value="Inscripción URSI2006"> <input type="hidden" name="ITEM_PRICE" value=""> <input type="submit" value="ENVIAR" name="ENVIAR"> <input type="reset" value="Borrar datos" name="Borrar datos"> </form>
Código:
Gracias de antemano. <input type="hidden" name="ITEM_PRICE" value="<SCRIPT>formulario.txtTotal.value</SCRIPT>">