'创建一个填充数据集的过程Sub readpage(ByVal n As Integer) sDA = New SqlDataAdapter("select employeeid, lastname from employees order by employeeid", scon) ds = New DataSet ds.Clear() sDA.Fill(ds, (n - 1) * rowCount, rowCount, "employees")End Sub 然后绑定到ds上 相关文章: 2021-07-04 2021-05-11 2021-09-21 2022-12-23 2022-12-23 2021-06-17 2022-01-02