表单验证
好的,我在我的网站中使用表单身份验证,并在我的配置中定义了它。因此我有一个 ASPNETDB.MDF。那么我的网络主机中是否需要有一个名为 ASPNETDB.MDF 的数据库?如果是这种情况,那么我如何连接它以便我的网站使用它来验证用户?抱歉,这似乎是一个非常菜鸟的问题
Ok so I am using forms authentication in my web site and I defined this in my config. Therefore I have an ASPNETDB.MDF. So do I need to have a database called ASPNETDB.MDF in my web host? If that is the case then how do I connect this so that my site uses this to verify users? I am sorry this seems to be like a very noob question
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 ASPNETDB.MDF 放入 App_Data 文件夹中。
要使用的连接字符串为< /code>
当您将此连接字符串与您的成员资格挂钩时,身份验证将使用您的 ASPNETDB.MDF 文件。
-------------------尝试以下-----------------
抱歉,在上面放置了一个上面的连接字符串您应该能够更改连接字符串的名称。您还需要在您的会员元素中更改此设置。
Place the ASPNETDB.MDF in your App_Data folder.
The connection string to use is
<add name="LocalSqlServer" connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|aspnetdb.mdf" />
When you hook this connection string to your membership provide the authentication will use your ASPNETDB.MDF file.
-------------------Try the following-----------------
Sorry place a above the connection string above you should be able to change the name of the connection string. You will also need to change this in your membership element.
您不必使用数据库来使用表单身份验证,如果您愿意,可以在 web.config 文件中定义条目。这取决于您使用的 MembershipProvider。
查看此处示例
You dont have to use a database to use forms authentication, you can define the entries in the web.config file if you like. It depends on the MembershipProvider that you are using.
Have a look here for an example