Server.Transfer() to page with http-equiv="refresh"

  • Thread starter Thread starter Totto
  • Start date Start date
T

Totto

Hi,
I'm doing a server.Transfer to a page with http-equiv="refresh" but when the
refresh occurs the page that was doing the Server.Transfer is loaded.
Anyone know if there is a way round this. Something to "flush"?

Thanks
Totto
 
Your transferring execution to the page with refresh, which is a client side
activity. Your refresh has no concept of the fact that the server passed
control to the away from the intiating page. You'll need to find another
approach.
 
Thanks John,
using Response.Redirect

T.

John Timney (MVP) said:
Your transferring execution to the page with refresh, which is a client
side activity. Your refresh has no concept of the fact that the server
passed control to the away from the intiating page. You'll need to find
another approach.
--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top