将自定义会员资格提供商集成到现有解决方案中
我有 MS 附带的 sqlMembershipProvider 和 sqlRolesProvider 的源代码,我想修改它以使用我自己的表和架构。
我有一个将使用此提供程序的现有解决方案,并且我想在该解决方案中调试提供程序代码,直到我确定它可以工作。
如何在该解决方案的项目中设置我的提供程序代码,以便我可以在解决方案的 Web 项目的 web.config 中引用我的自定义提供程序?
I have the source for the sqlMembershipProvider and the sqlRolesProvider that MS ships and I want to modify it to use my own tables and schema.
I have an existing solution that will use this provider and I'd like to debug the provider code within that solution until I'm sure it works.
How do I set up my provider code in a project within that solution so I can reference my custom provider in the solution's web project's web.config?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要您在配置中提供完全限定的类型名称,这并不重要:
它可以是单独程序集中或 Web 应用程序中的类型。 但它在“网站”项目中不起作用,因为 App_Code 文件夹中的所有代码都是动态编译的,因此您无法分辨其类型名称。
It doesn't really matter as long as you provide a fully qualified type name in the config:
It can be a type in a separate assembly, or in a web application. It won't work in case of a "Web Site" project though, because all code in App_Code folder is compiled on the fly, so you can't tell its type name.