データベースの2つの列をドロップダウンリストにバインドしたいと思います。これが私のコードです:
SqlConnection con=new SqlConnection(CommonRefference.Constr());
string query = "Select Id,Name+' ('+Distribution_name+') 'as Name1 from BR_supervisor ";
SqlCommand cmd = new SqlCommand(query,con);
con.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
DropDownList3.DataSource = query;
DropDownList3.DataTextField = "name1";
DropDownList3.DataValueField = "Id";
DropDownList3.DataBind();
}
con.Close();
ただし、次のエラーが発生します
DataBinding:'System.Char'には、'name1'という名前のプロパティが含まれていません
どうやってするの?誰もが私を助けてくれてとても感謝しています