2013-06-12 84 views

回答

4

第一遍ReturnUrl爲您的控制器上的字符串參數,如果它不是空重定向到該字符串值,就像這樣:

public ActionResult Login(string ReturnUrl){ 
    //logic here 
    if (ReturnUrl != null){ 
     return Redirect(ReturnUrl); 
    } 
    //Default return in case ReturnUrl is null goes here 
}