protected void btn_buscar_click(object sender, EventArgs args) { try { oSR = SalidaCtrl.RemisionGetByFolio(txt_dato.Text.Trim()); //List<Entrada> lst = EntradaCtrl.searchByFolioPedimento(txt_dato.Text.Replace(" ", "").Trim()); pnlNotFound.Visible = oSR.Id == 0; pnlFound.Visible = !pnlNotFound.Visible; if (oSR.Id != 0) { fillData(); } } catch (Exception e) { ((MstCasc)this.Master).setError = e.Message; } }