Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redirect to a different website

Status
Not open for further replies.

mrathi

Technical User
Oct 27, 2003
115
US
Hi,
I want to use in code something that will open up a new website, all together different on a different browser. I am using the tabstrip control, and when a user clicks on the one of the tabs, he should be taken to say for example, abcd.com.

How do I do this? If I use response.redirect, it just open in the same browser.

Thanks
 
You'll have to wrap the tab button with some client script:

<a href="abcd.com" target=_blank><button></a>

Somethign like that...you can't open a new browser through code behind though...has to be on the client.

D
 
Hi, the tab control does not accept the <a> tag.
This is the tabstrip control provided by IE Web Controls.

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top