Hi Friends,
I created a two radio button yes and no in one form.This form goes onto next form and depending on value of radio button does some action.
If I want to access the action of this radio button into another file too what should I do. I tried using the foll.
1st file
<form method="get" action="\property\proplist.asp">
<input type="radio" name="RegularAddDisplay" value="Yes" CHECKED> Yes <input type="radio" name="RegularAddDisplay" value="No"> No
</form>
I go to proplist and try access the value of radio button and perform some function.Now from proplist.asp I go to yet another file which too wants to access the value of radio button.
proplist.asp
Dim str
str = request("RegularAddDisplay")
---
---
<input type="hidden" name="RegularDis" value="<%=strRegularAddDisplay%>">
---
From proplist.asp i go to display.asp and try to access the radio button value as
Dim str
str = request("RegularDis")
----
---
But by doing so I cannot access the value of the radio button.Please help I dont know where i am going wrong.
Thank You
I created a two radio button yes and no in one form.This form goes onto next form and depending on value of radio button does some action.
If I want to access the action of this radio button into another file too what should I do. I tried using the foll.
1st file
<form method="get" action="\property\proplist.asp">
<input type="radio" name="RegularAddDisplay" value="Yes" CHECKED> Yes <input type="radio" name="RegularAddDisplay" value="No"> No
</form>
I go to proplist and try access the value of radio button and perform some function.Now from proplist.asp I go to yet another file which too wants to access the value of radio button.
proplist.asp
Dim str
str = request("RegularAddDisplay")
---
---
<input type="hidden" name="RegularDis" value="<%=strRegularAddDisplay%>">
---
From proplist.asp i go to display.asp and try to access the radio button value as
Dim str
str = request("RegularDis")
----
---
But by doing so I cannot access the value of the radio button.Please help I dont know where i am going wrong.
Thank You