My website has frames. I am developing a page that when the user click a hyperlink, he/she will be redirected to a new page according to the id of the link. The code is like this:
Select Case "id"
Case 1
Response.Redirect "page1.asp"
Case 2
Response.Redirect "page2.asp
......
End Select
But instead of opening a new window, this will open the page in the main frame. Can I open a new window using VBScript? If yes, how to do that?
Any help will be appreciated.
Thanks.
Select Case "id"
Case 1
Response.Redirect "page1.asp"
Case 2
Response.Redirect "page2.asp
......
End Select
But instead of opening a new window, this will open the page in the main frame. Can I open a new window using VBScript? If yes, how to do that?
Any help will be appreciated.
Thanks.