为什么要“会员制”?部分没有出现在 Web.config 中?
ASP.NET 4.0 和 C#
我正在使用 ASP.NET 为我创建的 SqlExpress DB 的默认成员资格提供程序,但我想修改一些设置。
所以我去 web.config 文件搜索
和
来更改那里的设置,但我没有找到它们!
我不想创建一个新的提供者。我只是想修改现有的。设置在哪里?
ASP.NET 4.0 and C#
I'm using the default membership provider with the SqlExpress DB that the ASP.NET had created for me, but I want to modify some settings.
So I went to the web.config file to search for the <Membership>
and <default provider>
to change the settings there, but I didn't find them!
I don't want to create a new provider. I just want to modify the existing one. Where are the settings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为它是使用默认值的默认值。
下面是一个例子。将其放在
之后Because it's the default using default values.
Below is an example. put it after
<system.web>
默认成员资格提供程序在您的 machine.config 中配置。修改 web.config 中的设置,或将 machine.config 中的设置复制到 web.config 中进行自定义。在重新添加之前,您可能需要在 Web 配置中添加
元素。The default membership provider is configured in your machine.config. Either modify the settings in the web.config, or copy the settings from your machine.config to your web.config to customize it. You may need to add a
<remove>
element in the web config before re-adding it.