obj.dataopen();
String sql = "SELECT * FROM product where xilieid=" + strID;
OleDbDataAdapter da = new OleDbDataAdapter(sql, obj.mdbconn);
DataSet ds = new DataSet();
da.Fill(ds);
PagedDataSource objPage = new PagedDataSource();//创建分页类
objPage.DataSource = ds.Tables.DefaultView;//设置数据源
objPage.AllowPaging = true;
objPage.PageSize = 5;
红色部分如何写,现在无法实现一页显示5个,它都显示出来了