|
-
Jan 7th, 2004, 09:32 AM
#1
Thread Starter
Member
getting radio button value problem ?
hi i have 2
<input value="1" name="optPhonetic" id="optExact" type="radio" checked="checked" />
<input value="0" name="optPhonetic" id="optNotExact" type="radio" />
i am submitting to the other form but i am not able to get the values using
form("optPhonetic").
any help is appriciated. thanks
kanaka
-
Jan 7th, 2004, 09:38 AM
#2
Frenzied Member
If you're submitting this to another form, you'd be better off using PHP.
-
Jan 7th, 2004, 09:55 AM
#3
Thread Starter
Member
thanks for the reply. i am using asp.net pages and posting to other page. i donno where i am making mistake where i could able to get all the text, select values on other side.
thanks
kanaka
-
Jan 7th, 2004, 10:02 AM
#4
Frenzied Member
Could you post your entire form? And the second form?
-
Jan 7th, 2004, 10:03 AM
#5
Thread Starter
Member
yes i am posting the entire form to the second form.
thanks
kanaka
-
Jan 7th, 2004, 10:05 AM
#6
Frenzied Member
*sigh*...
I meant post the code here so we can see it.
-
Jan 7th, 2004, 10:07 AM
#7
Fanatic Member
if your using the post method on the first form then use
VB Code:
V_optPhonetic = request.form("optPhonetic").
on the second page. If your using the get method on the first form use.
VB Code:
V_optPhonetic = request.querystring("optPhonetic").
on the second page.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|