Response.AppendHeader("Refresh", Not working... Ideas?

  • Thread starter Thread starter ujjc001
  • Start date Start date
U

ujjc001

For some reason I can't Response.AppendHeader("Refresh",
Convert.ToString((Session.Timeout * 60) + 60) & "; URL=default.aspx")
to add the tag into the header.

In the source the refresh header is not added to the head tags. Any
ideas?
I've tried in page init, page load, and page prerender.
Thanks.
Jeff
 
ujjc001 said:
For some reason I can't Response.AppendHeader("Refresh",
Convert.ToString((Session.Timeout * 60) + 60) & "; URL=default.aspx")
to add the tag into the header.

In the source the refresh header is not added to the head tags. Any
ideas?
I've tried in page init, page load, and page prerender.
Thanks.
Jeff

Are you expecting this to show up in the HTML source?
You will not find it there, the HTTP-headers are sent *before* the
HTML text. You can't see them with "view | source".

Try to set the timeout to a lower value than 21 minutes and see if
the refresh does happen after all. (your header should work ok)

Hans Kesting
 
Back
Top