protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         UpdatePanel3.Update();
         //OpcionesEstado();
         try
         {
             UpdatePanel.Update();
             gvCatalogo.DataSource = objctrSolicitud.ListaSolicitudesGestion();
             gvCatalogo.DataBind();
         }
         catch (Exception ex)
         {
             _log.CustomWriteOnLog("GestionPedido", "Error = " + ex.Message + "Stac" + ex.StackTrace);
             throw;
         }
     }
 }