Create new window on Redirect?

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Create new window on Redirect?

    Hi guys,

    A very simple problem: I have a "Response.Redirect("myURL") statement
    which I'd like to spawn a SEPARATE window, just like when on a form
    action, you can say target="_blank". Is that possible ?

    My Response.Redirect is (of course) on the server side, and, for various
    reasons, I can't have a form with a submit button for that particular
    user action.

    Regards
    Bernard
    bthouin Guest

  2. Similar Questions and Discussions

    1. Create Popup Window
      I would like to create a popup window with specific properties rather than just opening a new browser window. Is this possible in Contribute?
    2. create window / kill window
      I am working on a window that fly's in as a result of a button release. I have the window animated to fly in and fly out, I am wanting it to fly in...
    3. Response.Redirect to a new browser window?
      Can I do some kind of response.redirect to a new browser window? I need to use session variables in the new window and process some things on...
    4. Help to pop up a window before using Location to redirect a page
      All I want to pop up a window before/during redirect to another page. Sort of a confirmation page: <? .... /* I need to pop up a window...
    5. Redirect to New Browser Window like Response.Redirect
      That worked just fine for me as long as you put that open statement on one line rather than 2. "michel" <michely3k@yahoo.com> wrote in...
  3. #2

    Default Re: Create new window on Redirect?

    Thanks Paul.

    This function is only going to be used only by very few (2 or 3) users
    with special roles, so it would not be a problem. Can you tell me how do
    you do that at all ?

    Regards
    Bernard

    Paul Whitham TMM wrote:
    > I believe that it is possible, however it is probably not wise. Firefox and
    > IE6 SP2 have popup blockers that are likely to react to any attempt to open
    > the other window.
    >
    bthouin Guest

  4. #3

    Default Re: Create new window on Redirect?

    I have had a look around and I can't find the way to expand the
    response.redirect script. What I would suggest is that you could use the
    following script on the redirect page to open up the new window

    <SCRIPT language="JavaScript">
    <!--
    window.open ('index.cfm');
    //-->
    </SCRIPT>

    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "bthouin" <bernard_thouin@bluewin.ch> wrote in message
    news:d1nl7j$sa7$1@forums.macromedia.com...
    > Thanks Paul.
    >
    > This function is only going to be used only by very few (2 or 3) users
    > with special roles, so it would not be a problem. Can you tell me how do
    > you do that at all ?
    >
    > Regards
    > Bernard
    >
    > Paul Whitham TMM wrote:
    > > I believe that it is possible, however it is probably not wise. Firefox
    and
    > > IE6 SP2 have popup blockers that are likely to react to any attempt to
    open
    > > the other window.
    > >

    Paul Whitham TMM Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139