F
Frank Py
I have an application that uses token values in HTML. The token values
either feed or display data from a database linked with an ISAPI
application. I have reached a point where I need to evaluate what the
user enters into a quantity ordered field and compare it with the
minimum quantity field. I created a variable for my min qty field:
Var MinQty = “~~ML_UDF_MinQtyToken$~~”;
The quantity entry box is set up like this:
<td class="psdata" valign="top" align="left"><nobr><input
type="~~mi_qty_fld$~~" name="~~row_quantity_name$~~"
value="~~quantity$~~" size="4" maxlength="10" class="formentry">
</nobr></td>
How would I evaluate the value entered in the quantity box so it’s
always grater than the min qty value? I would like to throw up a message
box for the user when min qty is violated. Help appreciated. Thanks.
Frank
either feed or display data from a database linked with an ISAPI
application. I have reached a point where I need to evaluate what the
user enters into a quantity ordered field and compare it with the
minimum quantity field. I created a variable for my min qty field:
Var MinQty = “~~ML_UDF_MinQtyToken$~~”;
The quantity entry box is set up like this:
<td class="psdata" valign="top" align="left"><nobr><input
type="~~mi_qty_fld$~~" name="~~row_quantity_name$~~"
value="~~quantity$~~" size="4" maxlength="10" class="formentry">
</nobr></td>
How would I evaluate the value entered in the quantity box so it’s
always grater than the min qty value? I would like to throw up a message
box for the user when min qty is violated. Help appreciated. Thanks.
Frank