Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - open a new window
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

open a new window

 Post Reply Post Reply
Author
alex21 View Drop Down
Newbie
Newbie


Joined: 29 September 2003
Status: Offline
Points: 15
Post Options Post Options   Thanks (0) Thanks(0)   Quote alex21 Quote  Post ReplyReply Direct Link To This Post Topic: open a new window
    Posted: 14 November 2003 at 8:39am

Hello!

I do not know how to do that maybe some1 know

<%
If Request.QueryString("open")="window" Then
Response.Redirect("window.asp")      ;  - I need to open window in terget=_blank (but I do not know how to write this ASP script)
End If
%>
<a href="?open=window">open new window</a>

Plz help me!

Thx



Edited by alex21
Back to Top
michael View Drop Down
Senior Member
Senior Member
Avatar

Joined: 08 April 2002
Location: United States
Status: Offline
Points: 4670
Post Options Post Options   Thanks (0) Thanks(0)   Quote michael Quote  Post ReplyReply Direct Link To This Post Posted: 14 November 2003 at 9:30am
target is client side, asp is server side so you will have to mix it:
<%
If Request.QueryString("open")="window" Then
    url = "window.asp"
    response.write("<script>" & vbCrLf)
    response.write("window.open('" & url & "');" & vbCrLf)
    response.write("</script>")
End If
%>
<a href="?open=window">open new window</a>
Back to Top
alex21 View Drop Down
Newbie
Newbie


Joined: 29 September 2003
Status: Offline
Points: 15
Post Options Post Options   Thanks (0) Thanks(0)   Quote alex21 Quote  Post ReplyReply Direct Link To This Post Posted: 15 November 2003 at 4:06am
Originally posted by michael michael wrote:

target is client side, asp is server side so you will have to mix it:
<%
If Request.QueryString("open")="window" Then
    url = "window.asp"
    response.write("<script>" & vbCrLf)
    response.write("window.open('" & url & "');" & vbCrLf)
    response.write("</script>")
End If
%>
<a href="?open=window">open new window</a>

Thx

And how to open the window in _parent or in _mainFrame???

Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.