Esempio n. 1
0
        void showInfo()
        {
            //专家点评
            BLL.wx_fc_zjComment zBll = new BLL.wx_fc_zjComment();
            this.rptReview.DataSource = zBll.GetList(string.Format(" wid={0} and fid={1}", wid, fid));
            this.rptReview.DataBind();

            //房友印象
            BLL.wx_fc_fyImpression fBll = new BLL.wx_fc_fyImpression();
            this.rptYin.DataSource = fBll.GetListGroupby(string.Format(" wid={0} and fid={1} ", wid, fid));
            this.rptYin.DataBind();
        }