protected void Page_Load(object sender, EventArgs e) { string ma = Request.QueryString["MaLoaiTin"].ToString(); List <Tin> ds = new List <Tin>(); TinBLL tbll = new TinBLL(); ds = tbll.LayMaLoaiTin(ma); this.rpt.DataSource = ds; rpt.DataBind(); }