在我的 ASP.Net MVC Web 应用程序中,任何未经身份验证的匿名用户都可以键入 URL(例如 localhost:16621/Controller/Index/1 )并访问该页面。我怎样才能防止这种情况???
问问题
696 次
2 回答
1
在 ASP.NET MVC 中,使用AuthorizeAttribute
. 但是您可能需要一个使用数据库或使用 Oauth 对 Google/Facebook 进行身份验证的用户系统。
于 2013-07-05T14:12:49.487 回答