Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在没有 app.config 文件的情况下配置客户端应用程序服务?
我无法添加会员提供者,或设置默认提供者。有没有办法以编程方式设置这些或使用嵌入式资源而不是 app.config 文件?
在运行时设置提供程序:
MembershipProvider userProvider = Membership.Providers[UserProviderName];
参考:在运行时更改成员资格提供程序 ApplicationName。如何?