本文介绍了ASP.NET C# - 网站管理 - 连接到SQL Server数据库,而不是连接到ASPNETDB.MDF的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好
有谁能告诉我如何使用自己的数据库而不是使用.net创建的数据库(ASPNETDB.MDF)。
Could anyone please tell me how can I use my own database instead of using the .net created database (ASPNETDB.MDF) .
我需要使用网络管理工具,会员资格,角色等,我需要使用我自己的数据库。
I need to use web administration tool, membership, role etc. and I need to use my own database for the same.
推荐答案
示例
SqlConnection sqlConn = new SqlConnection(@"Data Source<<Sql Server Name>>;Initial Catalog=<<Your DataBaseName>>
;集成安全性=真"" ;;
;Integrated Security=True");
另一个: - User Server Explorer
Another One:- User Server Explorer
这篇关于ASP.NET C# - 网站管理 - 连接到SQL Server数据库,而不是连接到ASPNETDB.MDF的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!