gpt4 book ai didi

c# - 重定向 'Response is not available in this context' 时出错

转载 作者:可可西里 更新时间:2023-11-01 08:01:32 24 4
gpt4 key购买 nike

我正在使用以下代码将用户重定向到一个页面。

Session["USERDATA"] = user;
if (roleName.Equals("Zerker", StringComparison.CurrentCulture))
Response.Redirect("~/Account/Dashboard.aspx");

但这导致了错误。

Response is not available in this context.

我该怎么办?

最佳答案

我认为您正在自己的类(class)中使用响应对象。该对象在那里不可用。

尝试使用

HttpContext.Current.Response.Redirect("~/Account/Dashboard.aspx");

关于c# - 重定向 'Response is not available in this context' 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14516241/

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