Hi
How can I Set Value and Text members from DataSource in Bound RadGrid?
The code:
Tks
How can I Set Value and Text members from DataSource in Bound RadGrid?
The code:
const string sSql = "SPl_JUIZOS";SqlConnection oConnection = new SqlConnection(ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString);SqlDataAdapter oAdapter = new SqlDataAdapter(sSql, oConnection);DataTable oDataTable = new DataTable();GridJuizos.DataSource = oDataTable;Tks