示例#1
0
        public void BindData()
        {
            #region
            //if (!Context.User.Identity.IsAuthenticated)
            //{
            //    return;
            //}
            //AccountsPrincipal user = new AccountsPrincipal(Context.User.Identity.Name);
            //if (user.HasPermissionID(PermId_Modify))
            //{
            //    gridView.Columns[6].Visible = true;
            //}
            //if (user.HasPermissionID(PermId_Delete))
            //{
            //    gridView.Columns[7].Visible = true;
            //}
            #endregion

            DataSet       ds       = new DataSet();
            StringBuilder strWhere = new StringBuilder();
            if (txtKeyword.Text.Trim() != "")
            {
                #warning 代码生成警告:请修改 keywordField 为需要匹配查询的真实字段名称
                //strWhere.AppendFormat("keywordField like '%{0}%'", txtKeyword.Text.Trim());
            }
            ds = bll.GetList(strWhere.ToString());
            gridView.DataSource = ds;
            gridView.DataBind();
        }
示例#2
0
        protected void bind()
        {
            //艺人艺事
            Maticsoft.BLL.ArtsMatterGroup artsmattergroup = new Maticsoft.BLL.ArtsMatterGroup();
            Repeater1.DataSource = dtbindbig(artsmattergroup.GetList(10, "", "No desc").Tables[0]);
            Repeater1.DataBind();

            //作品
            Maticsoft.BLL.WorksGroup works = new Maticsoft.BLL.WorksGroup();
            //由原图路径转化成缩略图路径W
            Works.DataSource = dtbind(works.GetList(10, "", "No desc").Tables[0]);
            Works.DataBind();

            //新闻动态
            Maticsoft.BLL.NewsGroup newsbll = new Maticsoft.BLL.NewsGroup();
            RepeaterNews.DataSource = dtbind(newsbll.GetList(10, "", "No desc").Tables[0]);
            RepeaterNews.DataBind();
            //同行评价
            Maticsoft.BLL.EvaluateGroup Evabll = new Maticsoft.BLL.EvaluateGroup();
            RepeaterEva.DataSource = dtbind(Evabll.GetList(10, "", "No desc").Tables[0]);
            RepeaterEva.DataBind();
        }