Hi learner :p
Do you open your window with a javascript action? the window.open?
If this is the case, you should set the key parameter of that method to _blank. This way a new browser window is opened.
Below is an example which opens a new window on the linkbuttonclick:
Protected Sub LinkButton1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkButton1.Click
Page.ClientScript.RegisterStartupScript(Page.GetType, "popupOpener", "window.open('http://www.google.be', '_blank', 'height=500, width=500');", True)
End Sub
I hope this helps!
Wim
Please mark the reply that resolved your problem!
A Must Read For All!! >>
How to get your forum question answered - avoid thread-jacking