在MVC 3中重定向到错误的URL

时间:2014-04-17 08:43:48

标签: asp.net-mvc

我使用Register action Method

创建了AccountController
public ActionResult Register()
{
    return View();
}

在登录视图中我创建了注册

的链接
@Html.ActionLink("Register", "Register","Account")

但是当我点击注册链接时,它重定向错误就像这样

localhost:8090/Account/LogOn?ReturnUrl=%2fAccount%2fRegister

而不是

//localhost:8090/Account/Register

非常感谢您的帮助

1 个答案:

答案 0 :(得分:0)

请在注册操作方法上写[AllowAnonymous]