如何连接到 SERVER 上的 DB 以获得 Asp.Net 会员资格?
我刚刚使用“生成脚本”将 ASPNETDB.mdf 上传到服务器。 问题是,我不知道如何连接到我的会员资格。(例如登录控件) 连接字符串在哪里?
I've just upload my ASPNETDB.mdf using "Generate Scripts" into server.
The problem is, I don't know how can I connect to it for my Membership.(e.g LogIn Controls)
where is the ConnectionString?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更新 Web 配置中的数据源标签
update the Data Source tag in web config
连接字符串位于 web.config 文件中。
The connectionstring is in the web.config file.
修改应用程序的 web.config 文件以重新定义 LocalSqlServer 连接字符串以指向数据库。
如果您的会员提供程序未指向“LocalSqlServer”,那么您也可以在 web.config 中修改它。
Modify the web.config file for your application to redefine the LocalSqlServer connection string to point to the database.
If your Membership provider is not pointing to "LocalSqlServer", then you can modify that in the web.config as well.