|
-
Jul 11th, 2007, 08:16 PM
#1
Thread Starter
New Member
Button
How can i get my Button to click on a radio button and press Submit in another webpage?
-
Jul 11th, 2007, 09:00 PM
#2
Re: Button
Welcome to Forums, kimrogkr!
What programming language do you use for your development?
-
Jul 12th, 2007, 07:13 AM
#3
Thread Starter
New Member
Re: Button
Im useing Visual Basic 2005, and im makeing a shourtcut to a web page.
Like my buttons in the program correspond to a radio button and sublit button in another web page.
-
Jul 12th, 2007, 07:19 AM
#4
-
Jul 12th, 2007, 08:02 AM
#5
Re: Button
I'm having a hard time trying to visualize what exactly that you want to do... Can you give a detailed example?
-
Jul 12th, 2007, 11:23 AM
#6
Thread Starter
New Member
Re: Button
nobody know?
say if you dont know what im meaning..
-
Jul 12th, 2007, 11:30 AM
#7
Re: Button
 Originally Posted by kimrogkr
nobody know?
say if you dont know what im meaning..
stanav did say that. We aren't sure what you mean.
-
Jul 12th, 2007, 12:25 PM
#8
Thread Starter
New Member
Re: Button
im programming a script for a webpage, and one of my button shall mark a radio button and pres on submit on another webpage..
understand now?
-
Jul 12th, 2007, 12:58 PM
#9
Frenzied Member
Re: Button
I think I know what you're trying to do.. does this work for you? Also, are you programming in ASP.net? If so...
vb Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'Checks a radio button
RadioButton1.Checked = True
'Redirects person to another page
Response.Redirect("page2.aspx")
End Sub
As far as the pressing the submit button on another webpage, do you mean sending the person to another page? If so, the code above will do that. If you mean checking a radio button and then firing an event for pressing a button on a completely separate page... I'm not sure how you would do that.
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
|