Example #1
0
        protected void bindlive()
        {
            DataTable a = LiveBll.allLive();

            if (a != null)
            {
                liveview.DataSource = a;
                liveview.DataBind();
            }
        }
Example #2
0
        //绑定主播直播间数据
        protected void bingLive()
        {
            DataTable bl = LiveBll.allLive();

            if (bl != null)
            {
                live_view.DataSource = bl;
                live_view.DataBind();
            }
        }
Example #3
0
 //绑定数据
 protected void binglive()
 {
     ListView1.DataSource = LiveBll.allLive();
     ListView1.DataBind();
 }