how to open a new browser window

Contributor
13Nov2009,08:28   #1
shyam_oec's Avatar
dear sir,
i want to open a new browser window at the click of the button/link in asp.net using C#.
kindly explain the detailed procedure for the same.thanking you
Ambitious contributor
15Nov2009,07:11   #2
venami's Avatar
Hi,

If you can achieve this using a simple Javascript.

Code:
<form action="" method="post">
<input type="submit" value="submit" onclick="window.open();" />
</form>
shyam_oec like this
Contributor
19Nov2009,21:15   #3
urstop's Avatar
As Venami has mentioned you can use the onclick if its a normal html control, but, if its a .NET button or link button control you will have to use the onclientclick instead of onclick. Everything else remains the same.
Contributor
20Nov2009,05:33   #4
shyam_oec's Avatar
thanks
Ambitious contributor
22Nov2009,21:09   #5
venami's Avatar
Hi Urstop,

Since I have used the Javascript, should the onclick event be changed as you said for .NET?
Won't Javascript work with .NET?
Newbie Member
11Dec2009,21:51   #6
raqman's Avatar
current browser security settings require that a window only be opened from
href with a target, or client script tied to a onclick event. this prevents
the old trick of spewing inline javascript to open the window.

you need to find another approach. you should pass the id down in the
original render, and have client script determine the correct value, or just
render a link the user clicks on to open the window.

__________________
RAQ ReportFree Excel-like Web-based Java reporting tool