
April 10th, 2003, 09:05 AM
|
|
Junior Member
|
|
Join Date: May 2002
Location: Oslo
Posts: 4
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Passing checkbox value to other asp page
I have a simple problem:
page 1:
<input type=checkbox name=addValue value="Y">
page 2:
<input type="hidden" name="addValue" value="<%=Y%>">
page3:
<%=request.form("addValue")%>
<%if "addValue" = "Y" then addTax="30,00" else addTax="0,00" end if%>
<%=pCurrencySign & (addTax)%>
There is a problem in transfering the value from page 1 to page 2 and 3. What is the problem here???
|