更改 ASP.NET 网站管理工具连接字符串
我已使用 Asp.net 网站管理工具创建用户角色。我想将这些用户角色存储在我的表中,该表存储在 SQL Server 中。但该工具已创建默认连接字符串并将数据存储在自己的表中。
我在 SQL Server 2008 R2 中有一个包含属性 user_id
、role_id
和 role_name
的 user_role
表。如何将此表连接到 ASP.NET 网站管理工具?
我正在使用 .NET Framework 4.0、ASP.net Web 应用程序、SQL Server 2008 R2。
I've created user roles with Asp.net website administration tool. I want to store these user roles in my table which are stored in SQL server. But the tool has created default connection string and has stored datas in its own table.
I've a user_role
table with attributes user_id
, role_id
and role_name
in SQL server 2008 R2. How can I connect this table to asp.net website administration tool?
I am using .NET framework 4.0, ASP.net web application, SQL server 2008 R2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认配置在应用程序的 web.config 文件中定义:
部分将显示连接到数据库的位置,
部分将显示连接到数据库的位置。 > 部分显示您的会员资格提供商的配置方式。因此,听起来您只需更改连接字符串以指向您设置的数据库(而不是默认的
aspnetdb
数据库)。The default configuration is defined in your application's web.config file here:
The
<connectionStrings>
section will show you where you are connecting to the database, and the<membership>
section shows how your membership provider is configured.So, it sounds like you just need to change the connection string to point to the database that you set up (rather than the default
aspnetdb
database).