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();
}
}
}
役立つデータが不足している場合はお知らせください。
接続文字列は次のとおりです。