When I try to databing dropdownlist, got this: system.data.datarowview what do I wrong?
dropdownlist
system.data.datarowview
string strQuery = \"Select Item FROM
Try this..
ddlList.DataSource = sqlTa; ddlList.DataTextField = "class"; ddlList.DataBind();
adding ddList.Value="somefield" is optional
ddList.Value="somefield"