为了账号安全,请及时绑定邮箱和手机立即绑定

在ASP.NET中设置连接字符串到SQL SERVER

在ASP.NET中设置连接字符串到SQL SERVER

温温酱 2019-08-27 10:28:44
在ASP.NET中设置连接字符串到SQL SERVER我正在尝试在我的web.config文件(Visual Studio 2008 / ASP.NET 3.5)中将连接字符串设置为本地服务器(SQL Server 2008)。在我的web.config中,我如何以及在何处放置连接字符串?以下是web.config文件现在的样子:http://imwired.net/aspnet/Online_web.config
查看完整描述

3 回答

?
BIG阳

TA贡献1859条经验 获得超6个赞

你也可以使用它,它更简单。您需要设置的唯一内容是“YourDataBaseName”。

  <connectionStrings>
    <add name="ConnStringDb1" connectionString="Data Source=localhost;Initial Catalog=YourDataBaseName;Integrated Security=True;" providerName="System.Data.SqlClient" />
  </connectionStrings>

放置连接字符串的位置

<?xml version='1.0' encoding='utf-8'?>  
  <configuration>  
    <connectionStrings>  
      <clear />  
      <add name="Name"   
       providerName="System.Data.ProviderName"   
       connectionString="Valid Connection String;" />  
    </connectionStrings>  
  </configuration>


查看完整回答
反对 回复 2019-08-27
?
慕桂英4014372

TA贡献1871条经验 获得超13个赞

出于某种原因,我在这里看不到简单的答案。

把它放在代码的顶部:

using System.Web.Configuration;using System.Data.SqlClient;

把它放在Web.Config中:

<connectionStrings >
    <add
         name="myConnectionString" 
         connectionString="Server=myServerAddress;Database=myDataBase;User ID=myUsername;Password=myPassword;Trusted_Connection=False;"
         providerName="System.Data.SqlClient"/></connectionStrings>

以及您要设置连接变量的位置:

SqlConnection con = new SqlConnection(
    WebConfigurationManager.ConnectionStrings["myConnectionString"].ConnectionString);


查看完整回答
反对 回复 2019-08-27
  • 3 回答
  • 0 关注
  • 676 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信