Hi I want to display datable fast. It takes time to bind in rpeater can any one suggest fast way to do it
DataTable allocations = new DataTable("Employees");
DataColumn empid = new DataColumn("EMPID", typeof(System.String));
DataColumn firstName = new DataColumn("FirstName", typeof(System.String));
DataColumn lastName = new DataColumn("LastName", typeof(System.String));
DataColumn projectName = new DataColumn("ProjectName", typeof(System.String));
DataColumn projectCode = new DataColumn("ProjectCode", typeof(System.String));
DataColumn month1 = new DataColumn("Month1", typeof(System.String));
DataColumn month2 = new DataColumn("Month2", typeof(System.String));
DataColumn month3 = new DataColumn("Month3", typeof(System.String));
allocations.Columns.Add(empid);
allocations.Columns.Add(firstName);
allocations.Columns.Add(lastName) ...
Go to the complete details ...