Response.Flush / Response.Redirect

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Response.Flush / Response.Redirect

    Hi,

    I've had a good google and can't find anything already on this so :

    I'm currently trying to have a 'Page Loading' page on a site. The way things
    are supposed to work are :

    page a -->page b (Page Loading) --> page c

    I, cannot, for some reason get 'page b' to Response.Redirect to 'page c' one
    the process has taken place.

    I understand that I have already written the page headers etc. to the user
    and that Response.Redirect would not normally work once this has taken
    place. I've currently got around the problem by using a JavaScript onLoad
    function but I am a bit hesitant about this because of browser compatibility
    issues.

    Is there a failsafe ASP way of doing this ?

    Thanks

    Richard


    Richard N. Guest

  2. Similar Questions and Discussions

    1. response.flush not work
      I need your help, please. The following 2.asp is a demo for flush function. It works. BUT when I put it in a frame, it dosen't work. Is any IE...
    2. Response.Flush() does not work
      The page is rendered at once during the Page.Render method for the page object. Response.Flush will work, but there is nothing in the buffer on...
    3. Response.Write and Response.Redirect
      On my Page_Load event, i need to do some validation and then either let them proceed, or display a error message and boot them back to the previous...
    4. Response.Flush() in code-behind
      Huh, good question. I always though it wasn't possible to do this, but the description of Flush claims that this is what the method does. Is it...
    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: Response.Flush / Response.Redirect

    No, because what you are doing is a client-side activity.
    The Javascript is probably the "best" way of doing it.

    "Richard N." <richard@NOSPAMPLEASEbrandlink.co.uk> wrote in message
    news:bmsdt9$9es$1@titan.btinternet.com...
    > Hi,
    >
    > I've had a good google and can't find anything already on this so :
    >
    > I'm currently trying to have a 'Page Loading' page on a site. The way
    things
    > are supposed to work are :
    >
    > page a -->page b (Page Loading) --> page c
    >
    > I, cannot, for some reason get 'page b' to Response.Redirect to 'page c'
    one
    > the process has taken place.
    >
    > I understand that I have already written the page headers etc. to the user
    > and that Response.Redirect would not normally work once this has taken
    > place. I've currently got around the problem by using a JavaScript onLoad
    > function but I am a bit hesitant about this because of browser
    compatibility
    > issues.
    >
    > Is there a failsafe ASP way of doing this ?
    >
    > Thanks
    >
    > Richard
    >
    >

    Tom B 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