访问 web.config 属性(不是 appSettings)
鉴于我可以向股票会员资格提供程序添加各种属性,我假设我可以对自己的提供程序实现执行相同的操作。
<add name="MyMembershipProvider" type="Portal.Infrastructure.MyMembershipProvider"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
[...] />
我现在的问题是:如何在代码中访问这些值?我知道 ConfigurationManager 可用于访问 appSettings 部分中的键值对,但这是不同的。
given that I can add various attributes to the stock membership provider I assume I can do the same with my own provider implementation.
<add name="MyMembershipProvider" type="Portal.Infrastructure.MyMembershipProvider"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
[...] />
My question now: How do I access these values in the code? I understand that the ConfigurationManager can be used to access key value pairs in the appSettings section but this is different.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您尝试访问哪个部分,但一般的想法是您可以通过以下方式直接访问 WebConfig:
而不是 IdentitySection 放置您的部分。
I don't know what section you trying to acces but genearl idea is that you can access WebConfig directly by:
Instead of IdentitySection put your section.