A
Arvind
Hi,
i am using custome data grid control, which does not have the coloumn
tag i.e property
so i can't add rows explicity in aspx file. i also tried this
DataColumn dcSelect = new DataColumn("Select");
dcSelect.DataType = System.Type.GetType("System.Boolean");
and add new row value as
dr["Select"] = false ;
dtAgentBasedMonitor.Rows.Add(dr);
but it's not working as displaying only true or false when i assing
new row.
can anyone konw another way?
i am using custome data grid control, which does not have the coloumn
tag i.e property
so i can't add rows explicity in aspx file. i also tried this
DataColumn dcSelect = new DataColumn("Select");
dcSelect.DataType = System.Type.GetType("System.Boolean");
and add new row value as
dr["Select"] = false ;
dtAgentBasedMonitor.Rows.Add(dr);
but it's not working as displaying only true or false when i assing
new row.
can anyone konw another way?