如何在数据库层使用Membership方法?
我有一个 ASP.NET 2.0 3 层应用程序。 我希望所有数据库交互都通过数据库层。 因此,当我使用登录控件时,我希望它们向下调用各层,直到到达数据库层,而不是调用它们调用数据库的方法。 那时我会调用会员方法来登录、检查用户名等。 但是,我似乎无法引用作为我的数据库层的类项目中的成员资格类。 我尝试设置对 System.Web.Security 的引用,但它不在我的列表中,即使我可以在 ui 层中使用这些方法。 我有什么遗漏的吗?
I have an ASP.NET 2.0 3-tiered app. I want ALL of the db interaction to go through the db layer. So, when I use the Login controls, instead of them calling methods that hit the db, I want them to call down the layers until I reach the db layer. At that point I would call the Membership methods to, say, login, check the username,etc. However, I can't seem to reference the membership class in the class project that is my db layer. I tried setting a reference to System.Web.Security but it's not in my list, even though I can use these methods in the ui layer. Is there something I am missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System.Web.Security 位于 System.Web 程序集中。
System.Web.Security is in the System.Web assembly.