在网格视图中绑定200行和6列时,需要花费太多时间。我不想使用分页。请帮我解决这个问题。
我将在不到1秒的时间内从数据库中获取数据集。但是在将这些数据绑定到gridview时,需要花费太多时间(超过1分钟)。
DataSet dtStudent = SqlHelper.ExecuteDataset(connection, CommandType.StoredProcedure, "spGetStudentListForSelectedCourse", new SqlParameter("@courseid", AdClassSchedId), new SqlParameter("@internshipactivityid", activityid));
GRDApprovalStduents.DataSource = dtStudent;
GRDApprovalStduents.DataBind();
先谢谢