-
Easiest question ever
Hi People... I get this error "The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content. "
I know EXCALTY what is , but how can I prevent it? Response.flush? I can't remeber how to skip it.
How do I pass this error ..
Thanks!
-
When I get this error its because I've written out some HTML then try to write out a cookie or try to do a Response.Redirect. The only way I can avoid it is to arrange the code so that I write my HTML after those other writes.
-
Response.Buffer = True at the top of the page, but this is the default for IIS 5 and up.