|
-
Jul 7th, 2000, 07:52 AM
#1
-
Jul 7th, 2000, 08:15 AM
#2
Member
I am assuming that you have the radio buttons in a form. You set the form method to GET, the action to "asp2.asp", then for your hyperlink make it a submit button (or if you want a picture you just:
<INPUT type="image" src="pathtoimage">)
-
Jul 7th, 2000, 08:30 PM
#3
-
Jul 10th, 2000, 08:22 AM
#4
Member
I don't know if you can have just a text link instead of a submit button. If you don't mind having a button on the page, then you can put a submit button on <INPUT type="submit" value="Next">
Otherwise, you will have to use VBScript (or JavaScript):
You get value inside whatever inputs you have by using their name (document.formname.inputname)
If you want to do it this way then post what input types you have and what their names are (and the name of you form) and I can put something together for you.
-
Jul 10th, 2000, 10:45 AM
#5
Addicted Member
u can do it
the only way to make a hyperlink a submit button is the following (you'll have to use javascript):
Code:
<a href="asp2.asp" onclick = "foo();">TextSubmit</a>
and then foo() would have the following line of javascript:
Code:
document.form1.submit()
goodluck!
dvst8
Secret to long life:
Keep breathing as long as possible.
-
Jul 10th, 2000, 10:58 AM
#6
Member
That's a whole lot easier than the way I know how to do it.
-
Jul 10th, 2000, 01:57 PM
#7
Addicted Member
yeah no kidding!
i use this all the time now...
/d8
Secret to long life:
Keep breathing as long as possible.
-
Jul 10th, 2000, 08:32 PM
#8
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
|