protected void Page_Load(object sender, EventArgs e)
        {
            TinBLL     tbll = new TinBLL();
            List <Tin> t    = new List <Tin>();

            t = tbll.TinPhu();
            Repeater1.DataSource = t;
            Repeater1.DataBind();
        }