var id = Session["staff_id"].ToString()
//I have datatable with 5 columns
DataTable dt = function_return_Datatable(id);
dropdownlist1.DataSource = dt;
/*in DataTextField I want to merge two columns of DataTable, dt.columns [1] is First Name and dt.columns [2] is LastName*/
//I tried this way to merge them, but no results
dropdownlist1.DataTextField = dt.Columns[1].ToString()+" "+dt.Columns[2].ToString();
dropdownlist1.DataValueField = dt.Columns[0].ToString();
dropdownlist1.DataBind();
Any idea how to merge these two columns? thanks in advance,...
{ }) on the editor toolbar to nicely format and syntax highlight it! – marc_s Feb 14 '12 at 10:14