when i click on button1 it should open the url in Internet Explorer in a new window...
thanks in advance , - Miss Subanki
when i click on button1 it should open the url in Internet Explorer in a new window...
thanks in advance , - Miss Subanki
<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.
<input type="Button" value="Click me!" onclick='window.open("mypage.html", "refname", "resizable=yes,scrollbars=yes,status=yes");' />