When I call Response.Redirect(someUrl) I get an HttpException: "Cannot redirect after HTTP headers have been sent".
Why do I get this? And how can I fix this issue?
|
When I call Why do I get this? And how can I fix this issue? |
||||
|
|
|
According to the MSDN documentation for One way to guard against calling Response.Redirect() multiple times is to check the
|
|||
|
|
|
Once you send any content at all to the client, the HTTP headers have already been sent. A "Response.Redirect()" call works by sending special information in the headers that make the browser ask for a different URL. Since the headers were already sent, asp.net can't do what you want (modify the headers) You can get around this by a) either doing the Redirect before you do anything else, or b) try using Response.Buffer = true before you do anything else, to make sure that no output is sent to the client until the whole page is done executing. |
|||
|
|
|
A Redirect can only happen if the first line in an HTTP message is " If you already called |
||||
|
|
|
Just check if you have set the buffering option to false (by default its true). For response.redirect to work,
|
|||
|
|
|
The redirect function probably works by using the 'refresh' http header (and maybe using a 30X code as well). Once the headers have been sent to the client, there is not way for the server to append that redirect command, its too late. |
|||
|
|
|
There is one simple answer for this: You have been output something else, like text, or anything related to output from your page before you send your header. This affect why you get that error. Just check your code for posible output or you can put the header on top of your method so it will be send first. |
|||
|
|
|
If you are trying to redirect after the headers have been sent (if, for instance, you are doing an error redirect from a partially-generated page), you can send some client Javascript (location.replace or location.href, etc.) to redirect to whatever URL you want. Of course, that depends on what HTML has already been sent down. |
|||
|
|
|
My Issue got resolved by adding the Exception Handler to handle "Cannot redirect after HTTP headers have been sent". this Error as shown below code
|
|||
|
|