Hi,
I have bound the data in the grid view using the following code
gvHolidaysLst.DataSource = dsHoliday;
gvHolidaysLst.DataBind();
But I wanted to add a new column with check box control in the grid view.An error occurs while filling the grid view because the data source contains only 3 columns but i have added checkbox control as the fourth column.
How to resolve this issue?