Author: KJAK | Posted on: 4/2/2009 12:35:15 PM | Views : 864

Okay, so I know you can open a new window using javascript. The problem is that I am using a server-side language so I do not have to be dependent on client-side scripting for things to work.
Therefore I want a solution that does not involve javascript.
I've searched around and tried several things such as:

Response.Redirect("newpage.aspx", False) However, this still opens the new page in the same browser window.
Using .NET, how can I force a new window to open?

...

Go to the complete details ...