views:

47

answers:

3

when i click on button1 it should open the url in Internet Explorer in a new window...

thanks in advance , - Miss Subanki

+2  A: 
<a href="my_uri" target="_blank">

Although this does not guarantee a new window, some browsers prefer to open it in a new tab instead.

Andreas Jansson
+1  A: 
<input type="Button" value="Click me!" onclick='window.open("mypage.html", "refname", "resizable=yes,scrollbars=yes,status=yes");' />
Stefan
thanx frnd (i forgot to say thanx , srry)
subanki