我的控制器中有这样的私人功能。
private UserDetails GetUserDetails(int userid)
{
...
if (some condition check is false)
Redirect("some other page in a different subdomain");
return userDetails;
}
如果条件失败,则执行 Redirect 语句,但不会停止执行。userDetails 返回给调用函数。没有重定向到其他页面。
如何强制重定向?