Ask a Question related to ASP, Design and Development.
-
Richard N. #1
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
-
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... -
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... -
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... -
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... -
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... -
Tom B #2
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...things> 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 wayone> 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'compatibility> 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> issues.
>
> Is there a failsafe ASP way of doing this ?
>
> Thanks
>
> Richard
>
>
Tom B Guest



Reply With Quote

