我有一個asp.net網站,我試圖開發,我有一個問題從數據庫中加載數據。它在C#WebForm應用程序中運行正常,我想知道我需要做什麼才能使其在asp.net項目中正常工作,並將結果綁定到要從中選擇的下拉列表。從asp.net內的數據庫訪問C#網站sitie
try
{
SqlConnectionStringBuilder connectionStringBuilder = new SqlConnectionStringBuilder
{
DataSource = "127.0.0.1",
InitialCatalog = "PIIMSDATA",
IntegratedSecurity = true
};
SqlConnection cs = new SqlConnection(connectionStringBuilder.ToString());
SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM Book1 Order by ID", cs);
}
System.Data.DataTable dt = new System.Data.DataTable();
da.Fill(dt);
//DropDownList2.DataSource = ds.Tables[0];
//DropDownList2.DataTextField = "ID";
//DropDownList2.DataValueField = "ID";
//DropDownList2.DataBind();
}
catch (Exception ex)
{
ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('" + ex + "');", true);
//MessageBox.Show(ex.Message);
}
}
你的問題是什麼? – Ash
我取消註釋DropDownList代碼後,它永遠不會填充我的數據庫結果 –
您是否收到某種錯誤?嘗試逐行調試代碼。 – Ash