private void SearchWxPrPageList() { Model.CurrentMerModel cm = BLL.MerchantBLL.CurrentModel(); BLL.WxBLL bll = new BLL.WxBLL(); int CurrentPage = ReInt("CurrentPage", 1); bool Invalid = ReBool("Invalid", false); StringBuilder s = new StringBuilder(); s.Append(" MerId='" + cm.CurrentMerId + "' "); s.Append(" and Invalid='" + Invalid + "' "); DataSet ds = bll.GetWxPtPageList(s.ToString(), CurrentPage, 20, " * "); RePage(ds); }