gpt4 book ai didi

c# - HTTP 重定向 302

转载 作者:太空狗 更新时间:2023-10-29 18:19:07 26 4
gpt4 key购买 nike

我正在尝试进行 HTTP 302 重定向,但在 Debug模式下运行时出现以下异常。

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();

长话短说,此调用不会刷新响应也不会重定向。

我怎样才能让它工作?

最佳答案

您不应该以这种方式同时调用 EndFlush - 要使用 HTTP 302 重定向,您应该使用 HttpContext.Current.Response.Redirect 参见 http://msdn.microsoft.com/en-us/library/a8wa7sdt.aspx

关于c# - HTTP 重定向 302,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7233692/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com