all groups > dotnet jscript > february 2005 >
You're in the

dotnet jscript

group:

how to open a new browser window when clicked on a button control?


RE: how to open a new browser window when clicked on a button control? Gold
2/9/2005 7:05:04 AM
dotnet jscript:
just insert the following javascript function in between the head tags

void opennewwindow()
{
var w;
w=window.open("newpage.aspx");
}

and insert the following code in the page_load event

btnInvoice.Attributes.Add("onclick","opennewwindow();")


Try :-)

Regards,
Thangam

[quoted text, click to view]
how to open a new browser window when clicked on a button control? buran
2/9/2005 4:04:14 PM
Dear ASP.NET Programmers,

I am using the following code block to navigate to the invoice page of my
app. when users click on the button btnInvoice. However, I want to display
the invoice page in a new browser window. What javascipt code should I use
instead of Response.Redirect()? Thanks in advance,

Burak


Private Sub btnInvoice_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnInvoice.Click
If txtIRD.Text <> "" And txtInvoiceDate.Text <> "" Then
Response.Redirect("newinvoice_hospital.aspx?mfuid=" +
Request("mfuid") + "&spid=" + Request("spid"))
End If
If txtIRD.Text = "" Then
Say("Please enter the invoice receipt date")
End If
If txtInvoiceDate.Text = "" Then
Say("Please enter the invoice date")
End If
End Sub

Re: how to open a new browser window when clicked on a button control? Eliyahu Goldin
2/9/2005 5:01:53 PM
Burak,

As you write, you should use javascript instead of Response.Redirect. And
all your logic that is currently implemented on server sode should move to
client side. You don't need server roundtrips to check if a text entry field
is empty.

There is a number of javascript calls to open a new browser window.
window.open(...);
window.showModalDialog(...);
window.showModelessDialog(...);

Eliyahu

[quoted text, click to view]

AddThis Social Bookmark Button