protected void Button1_Click(object sender, EventArgs e)
        {
            string name = this.TextBox1.Text;
            string type = this.DropDownList1.SelectedItem.Text;

            this.Repeater1.DataSource = RejectManger.select(name, type);
            this.DataBind();
        }
 protected void Page_Load(object sender, EventArgs e)
 {
     this.Repeater1.DataSource = RejectManger.select();
     this.DataBind();
 }