gpt4 book ai didi

c# - Asp.Net 应用程序数据库连接问题

转载 作者:行者123 更新时间:2023-11-30 13:32:47 28 4
gpt4 key购买 nike

当我尝试用 C# 编写到我的应用程序到我的数据库的连接时,我在 Visual Studio 2005 中成功构建了该应用程序,但是当我在调试器中运行该站点时,出现错误:

Exception Details: System.ArgumentException: Format of the initialization string does not conform to specification starting at index 118.

这是给出错误的连接代码:

SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["Server"].ConnectionString);

我的 web.config 文件中正确写入了连接字符串,所以我对这远程意味着什么一无所知。我不确定我是否遗漏了什么。任何帮助表示赞赏。以下是我可能有帮助的部分的完整代码:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Web.Configuration;
using System.Data.SqlClient;

public partial class RateAnalyzerPage: System.Web.UI.Page
{
protected void Search_Click(object sender, EventArgs e)
{
string IDnumber = mechantNumber.Text;
string selectSQL = "SELECT FROM Authors Where MID='"+ IDnumber +"'";
// SqlConnection con = new SqlConnection(@"Server=");
//SqlConnection con = new SqlConnection();
SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["Server"].ConnectionString);
SqlDataReader reader;
try
{
con.Open();
SqlCommand cmd = new SqlCommand(selectSQL, con);
reader = cmd.ExecuteReader();
while (reader.Read())
{
QualVol.Text = reader["TotalVolume"].ToString();
}
reader.Close();
}
catch (Exception err)
{

}
finally
{
con.Close();
}
}
}

如果我遗漏了一些有用的数据,请告诉我。

这是连接字符串:

最佳答案

我已经分离出连接字符串值并对其进行 XML 解码:

Data Source=Server;Initial Catalog=Odata;Integrated Security=True;MultipleActiveResultSets=False;Packet Size=4096;Application Name="Microsoft SQL Server Management Studio"User ID=Name;Password=PW

如您所见,您在 Application NameUser ID 之间缺少一个 ;。我不确定这是否是问题,但有可能。

关于c# - Asp.Net 应用程序数据库连接问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11639320/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com