获取错误值不能为null或为空。参数名称:URL

时间:2014-07-01 10:57:02

标签: c# asp.net-mvc single-sign-on

这是我的代码。请有人帮我拼命地需要上面提到的代码。

    [HttpGet]
    public ActionResult Index(string returnUrl)
    {
        ViewBag.ReturnUrl = returnUrl;
        return View();
    }

    [HttpPost]
    public ActionResult Index(LoginModel loginModel, string returnUrl)
    {
        if (ModelState.IsValid)
        {
            if (loginModel.Username == "user" && loginModel.Password == "password")
            {
                FormsAuthentication.SetAuthCookie(loginModel.Username, true);
                return Redirect(returnUrl);
            }
            else
            {
                ModelState.AddModelError("", "The username or password provided is incorrect.");
            }
        }

        ViewBag.ReturnUrl = returnUrl;

        return View(loginModel);
    }

我正在关注此链接: http://www.primaryobjects.com/CMS/Article155.aspx

1 个答案:

答案 0 :(得分:1)

问题出在哪里:

如果你在没有returnUrl参数的情况下点击你的动作并且你将 null 传递给 Redirect()方法会发生什么? - 你得到了这个错误:)。

<强>解决方案:

您可以检查网址是否为空或使用默认mvc模板中包含的RedftToLocal方法(或者编写您自己的或..等等,不要将null传递给Redirect方法):< / p>

...
FormsAuthentication.SetAuthCookie(loginModel.Username, true);
// Here 'return Redirect(returnUrl);' become:
return RedirectToLocal(returnUrl);
... 

private ActionResult RedirectToLocal(string returnUrl)
{
    if (Url.IsLocalUrl(returnUrl))
    {
        return Redirect(returnUrl);
    }
    else
    {
        return RedirectToAction("Index", "Home");
    }
}