我使用Register action Method
创建了AccountControllerpublic ActionResult Register()
{
return View();
}
在登录视图中我创建了注册
的链接@Html.ActionLink("Register", "Register","Account")
但是当我点击注册链接时,它重定向错误就像这样
localhost:8090/Account/LogOn?ReturnUrl=%2fAccount%2fRegister
而不是
//localhost:8090/Account/Register
非常感谢您的帮助
答案 0 :(得分:0)
请在注册操作方法上写[AllowAnonymous]
。