public void RegistrarSoporteConvenio(string urlSoporte) { try { int resSop = AdministrarPagadurias.RegistrarArchivosSoporteConvenio(null, Session["idConvPaga"].ToString(), txtNomSoporte.Text, urlSoporte); if (resSop >= 0) { lblMsjCarga.Text += "<br> - Proceso de Asocio al Convenio: Ok "; MensajeFormV2(" - El Archivo Soporte ha sido adjuntado correctamente al Convenio"); } else { lblMsjCarga.Text += "<br> - Proceso de Asocio al Convenio: Error "; MensajeFormV2(" - No se ha podido asociar el archivo al Convenio. Por favor Intentelo Nuevamente"); } } catch (Exception ex) { MensajeFormV2("Ha Ocurrido un problema con su petición"); } }