Java script will open a new window with window.open(). Is there a way to make ASP.net do this?I believe you can use something like this on client scripts<BR><BR>ProcessStartInfo myStartInfo = new ProcessStartInfo();<BR>// set all the properties <BR><BR>Process myProcess = Process.Start(myStartInfo);Add this to your Page_Load() event:<BR><BR> myButton.Attributes("onclick") = "javascript:window.open(""WebForm2.aspx"");"<BR><BR>Opens requested window when myButton is clicked. You can code all the parameters for window.open if you want.