Opening a new window

Dohmaker

Member
Joined
Oct 4, 2007
Messages
13
Programming Experience
1-3
hi everyone,

I have a little problem, and its probably too simple because I can't google the answer!

Basically I want to make a new explorer window to open when someone clicks a link. Basically what I want is this: Response.Redirect("FormAdd.aspx") but in a new window, so that the person can still look at the original window.

How can I do this?
 
yeah I found that answer, but I was hoping there was a way to do things without using javascript. On well, I guess I'll do that then
 
Perhaps you missed the mention of the target attribute of the anchor tag in post four of Raven65's link.
HTML:
<a href="http://www.microsoft.com" target="_blank">Microsoft web site</a>
Setting the target attribute to _blank will cause the link to be opened in a new window without the use of javascript.
 
Back
Top