我在我的控制器中有這樣的私人功能。MVC3 Controller.Redirect(字符串)
private UserDetails GetUserDetails(int userid)
{
...
if (some condition check is false)
Redirect("some other page in a different subdomain");
return userDetails;
}
如果條件失敗,則執行Redirect語句,但執行不會停止。 userDetails返回給調用函數。沒有重定向到其他頁面。
我該如何強制重定向?
爲什麼不傳回空,如果它失敗,並讓你的視圖句柄或忽略空? – Sean