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.
--
 
Back
Top