在我的 Web 应用程序中,我想在控制器中的某些操作方法中添加授权,而不是在整个控制器上。我添加了以下内容
[Authorize]
public ActionResult ManageResturant(long Id = 0)
{
}
在 web.config 我添加了
<authentication mode="Forms" >
<forms loginUrl="~/Auth/LogIn"/>
</authentication>
但是当我使用该操作方法时,页面加载正常,这是错误的,我希望页面重定向到登录页面
有什么建议么?