为什么成员资格 API 向 aspnet_Applications 表添加额外的记录?
我们正在谈论 ASP.NET 2.0。我已经将 applicationName 属性添加到 web.config 中的提供程序组中。但是,当我清除所有表并运行应用程序时,当我添加用户时,它会添加 2 条记录,一条记录的 ApplicationName= 我指定的实际应用程序名称,另一条记录的 ApplicationName="/"。
现在,我确实注意到在表单中我有以下代码:
<forms
loginUrl="Login.aspx"
timeout="20"
name=".ASPXAUTH"
defaultUrl="authenticated\home.aspx"
path="/"
>
</forms>
该路径属性负责吗?
We are talkign ASP.NET 2.0. I have already added the applicationName attribute to my providers group in the web.config. But still, when I clear out all the tables and run the app, when I add a user, it adds 2 records, one with an ApplicationName= the actual application name I specified, and another with ApplicationName="/".
Now, I did notice that in forms I have the following code:
<forms
loginUrl="Login.aspx"
timeout="20"
name=".ASPXAUTH"
defaultUrl="authenticated\home.aspx"
path="/"
>
</forms>
Is that path attribute responsible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,“/”是根并且始终存在。
No, '/' is root and is always present.