Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下代码将用户重定向到页面。
Session["USERDATA"] = user; if (roleName.Equals("Zerker", StringComparison.CurrentCulture)) Response.Redirect("~/Account/Dashboard.aspx");
但这会导致错误。
在这种情况下没有响应。
我该怎么办?
我认为您正在自己的班级中使用响应对象。该对象将在那里不可用。
尝试使用
HttpContext.Current.Response.Redirect("~/Account/Dashboard.aspx");