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