Executing a hyperlink when a button clicks

see07

Regular
Joined
Apr 16, 2004
Messages
78
Location
Mexico City
Hello:
I have a web form where I have a button and a hyperlink.
When user clicks the button I change Text and NavigateUrl properties of hyperlink, then user need to clicks hyperlink to open another web page.
How can I achieve that when user clicks the button, be launched the clicks in hyperlink, if I achieve it I’ll save user to clicks hyperlink.
I’ll appreciate all your suggestions.
A.L.
 
If I understand you correctly and if you're doing all of this in the codebehind, could you just use

Response.Redirect("new_url.aspx");

...in your button's click event?

Paul
 
Back
Top