S
settyv
Hi,
I want to add new column to the Datatable which is returned from
Business layer.Will the below code work?
Case BCase=new Case();
BCase.SearchEvents(sp,out ds);
DataColumn c1 = new DataColumn("View PDF",
Type.GetType("System.string"));
ds.Tables["Events"].Columns.Add(c1);
grdTentativeResults.DataSource=ds;
grdTentativeResults.DataBind ();
Please let me know how can i do that.
Thanks,
Vishnu
I want to add new column to the Datatable which is returned from
Business layer.Will the below code work?
Case BCase=new Case();
BCase.SearchEvents(sp,out ds);
DataColumn c1 = new DataColumn("View PDF",
Type.GetType("System.string"));
ds.Tables["Events"].Columns.Add(c1);
grdTentativeResults.DataSource=ds;
grdTentativeResults.DataBind ();
Please let me know how can i do that.
Thanks,
Vishnu