Пример #1
0
        protected void BindListView()
        {
            List <TblThongBao> lst = ThongBaoBussiness.GetListTopThongBao();

            lv_ThongBao.DataSource = lst;
            lv_ThongBao.DataBind();
        }
Пример #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (IsPostBack)
            {
                return;
            }
            List <TblThongBao> lst = ThongBaoBussiness.GetListTopThongBao();

            lv_ThongBao.DataSource = lst;
            BindListView();
            lv_ThongBao.DataBind();
        }