ASP .Net 成员访问规则
您好,我在本地服务器上设置了访问规则,它们工作正常。 但是,当我将它们部署到我的临时服务器上时,规则不起作用。 规则存储在哪里? 我的本地服务器和临时服务器都指向同一个数据库服务器。 感谢您的任何见解。
我在 ASP.Net Web 应用程序管理中设置访问规则
Hi I have setup Access Rules on my local server and they work fine. However when I deploy them on to my staging server the rules are not in effect. Where are the rules stored? Both my local and staging server point to the same DB server. Thank you for any insight.
I set the Access Rules in the ASP.Net Web Application Administration
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
每个安全文件夹都有一个
web.config
文件,用于定义该路径的访问规则。将它们复制到您的服务器。
Each secure folder has a
web.config
file that defines access rules of that path.Copy them to your server.
如果您指的是角色/用户限制,则这些限制位于 web.config 中。 内置的 roleprovider 和membershipprovider 将用户和角色存储在数据库中,但允许/拒绝角色位于 web.config 中(或在您为此执行的自定义代码中)。
If you mean roles/users restrictions, those go in the web.config. The built-in roleprovider and membershipprovider store the users and roles in the db, but the allow/deny roles are in the web.config (or in custom code you do for that matter).
成员信息存储在 ASPNETDB 数据库中,默认情况下位于 app_data 文件夹中。 检查您的 web.config 是否有以下内容:
The membership info is stored in the ASPNETDB database, which by default is in the app_data folder. Check your web.config for the following: