Scenario:<BR>I have an button (web control) on page 1. How do I open up a new window from the clicked event (server-side) for this button. I am wanting to open page 2, but keep page 1 open as well.<BR><BR>Probably pretty simple. TIA.check this out:<BR>http://www.dotnetjunkies.com/tutorials.aspx?tutorialid=323You can use some JavaScript code and call a function on your button's onClick which would go to a JavaScript function in your page's head.<BR><BR>The function may look like this <BR><BR>function OpenWindow()<BR>{<BR>window.open("NewPage.aspx")<BR>}<BR><BR>Or you can replace the window.open with a showModalDialog(3 things in here) to open a dialog box instead of a browser.<BR><BR>Hope this helps and my JS isn't too rustyThanks for both of your responses. It is what I was looking for.