M
Mettá
My brain has packed up!
Trying to use a hidden field values as say 4.85 but on the next page when I
try to use it I get just the whole number "4"
<input type="hidden" name="prce" value="4.85">
and an open field for quantity as "qty"
On the next page I have say...
<%Dim tprice
tprice=(Int(request.form("qty")))*(Int(request.form("prce")))
%>
<p>Price £<%=tprice%>
Trouble is I get £8 instead of 4.85x2 £ 9.70
Any suggestions!!
Thanks
M
Trying to use a hidden field values as say 4.85 but on the next page when I
try to use it I get just the whole number "4"
<input type="hidden" name="prce" value="4.85">
and an open field for quantity as "qty"
On the next page I have say...
<%Dim tprice
tprice=(Int(request.form("qty")))*(Int(request.form("prce")))
%>
<p>Price £<%=tprice%>
Trouble is I get £8 instead of 4.85x2 £ 9.70
Any suggestions!!
Thanks
M