2
看來我的代碼不完整,或者我的語法錯誤,但我盡我所能提出了某種解決方案,但迄今爲止沒有成功......所以這裏是我想要做的: 我有幾個下拉框,並希望將每個下拉框的選定值分配給表適配器中的值。這是到目前爲止我的代碼,但不知道什麼是失蹤:這裏如何在後面的代碼中使用SqlDataAdapter?
protected void Page_Load(object sender, EventArgs e)
{
ID = Convert.ToInt32(Request.QueryString["myID"]);
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["myconnectionstring"].ConnectionString);
SqlDataAdapter da = new SqlDataAdapter("SELECT NAME, DEPARTMENT, LOCATION from MyTable WHERE ID = '" + ID + "' ", con);
DataTable dt= new DataTable();
da.Fill(dt);
ddl_Name.SelectedValue = dt[0].Name;
ddl_DEPARTMENT.SelectedValue = dt[0].DEPARTMENT;
ddl_LOCATION.SelectedValue = dt[0].LOCATION;
}
我的問題開始當我鍵入DT [0] .name和似乎當我添加的零它不喜歡。請幫助。感謝
太感謝你了,你的解決方案的工作,我很欣賞ü教我一些額外的工作人員。 thnks – moe