Ejemplo n.º 1
0
 protected void txtSearch_TextChanged(object sender, EventArgs e)
 {
     try
     {
         GridView1.DataSource = uc.LoadKycOfTenantsbySearch(txtSearch.Text);
         GridView1.DataBind();
     }
     catch (Exception ex)
     {
         string text = ex.Message.ToString();
         ScriptManager.RegisterStartupScript(this, typeof(Page), "Warning", "<script>showpoperror('" + text + "')</script>", false);
     }
 }