“/WebApplication5”应用程序中的服务器错误。
--------------------------------------------------------------------------------

SQL Server 不存在或访问被拒绝。 
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 

异常详细信息: System.Data.SqlClient.SqlException: SQL Server 不存在或访问被拒绝。

源错误: 


行 65:             string connectionstring="data Source=local;User ID=sa;Password=sa;initial catalog=test";
行 66:             SqlConnection myConnection = new SqlConnection(connectionstring);
行 67:             myConnection.Open();
行 68:             string strSql="Insert into test1 values('"+IDTB.Text+"','"+FirstNameTB.Text+"','"+LastNameTB.Text+"',"+JobIDTB.Text +",'"+PubIDTB.Text+"')";
行 69:             SqlCommand myCommand = new SqlCommand(strSql, myConnection);
 

源文件: c:\inetpub\wwwroot\webapplication5\addemployee.aspx.cs    行: 67 

堆栈跟踪: 


[SqlException: SQL Server 不存在或访问被拒绝。]
   System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction)
   System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction)
   System.Data.SqlClient.SqlConnection.Open()
   ADONETExample.AddEmployee.Summit_Click(Object sender, EventArgs e) in c:\inetpub\wwwroot\webapplication5\addemployee.aspx.cs:67
   System.Web.UI.WebControls.Button.OnClick(EventArgs e)
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
   System.Web.UI.Page.ProcessRequestMain()