ASP.Net C# ASPNETDB.mdb with SQL 2008 R2 Developers and SQL

本文关键字:SQL 2008 R2 Developers and with Net ASPNETDB mdb ASP | 更新日期: 2023-09-27 18:19:22

我已经安装了SQL Express和SQL developer版本的实例。我已经安装了我的客户数据库上的SQL开发人员版使用LINQ到实体。我从SQL Express迁移过来,因为我在SQL Express和n层应用程序(3个项目)上遇到了问题。

我准备为我的应用程序添加我的成员资格提供程序(成员资格和角色提供程序),但我想确保它是使用SQL开发人员版创建的。如何创建提供程序?

另外,作为一个新手,我需要帮助创建我的ASPNETDB的连接字符串。mdb数据库。

提前感谢!

ASP.Net C# ASPNETDB.mdb with SQL 2008 R2 Developers and SQL

如果您想使用可信连接,请使用如下内容:我建议将这些值移植到web上。Config或app.config文件如果我在。config文件中,它看起来像这样

<appSettings>
<add key="strConnectionString" value="Data Source=YourDomain'ServerName;
    Initial Catalog=yourDatabaseNameP;User ID=YourUser;Trusted_Connection=yes"/>
</appSettings>
// .NET DataProvider -- Trusted Connection  
using System.Data.SqlClient;
SqlConnection conn = new SqlConnection();
conn.ConnectionString = 
              "Data Source=ServerName;" + 
              "Initial Catalog=DataBaseName;" + 
              "Integrated Security=SSPI;"; 
conn.Open();

// .NET DataProvider -- Standard Connection  
using System.Data.SqlClient;
SqlConnection conn = new SqlDbConnection();
conn.ConnectionString = 
              "Data Source=ServerName;" + 
              "Initial Catalog=DataBaseName;" + 
              "User id=UserName;" + 
              "Password=Secret;"; //change to fit your case
conn.Open();