I m trying to make a HTTP 302 Redirect, but getting the following exception while I'm running in debug mode.
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack
var response = HttpContext.Current.Response;
response.Clear();
response.Status = "302 Found";
response.AddHeader("Location", "http://google.com");
response.End();
response.Flush();
Long story short, this call is not flushing the response and not redirecting.
How can I get this working?