Exemplo n.º 1
0
        private void ValidaCapturaGrupos()
        {
            StringBuilder sb = new StringBuilder();


            if (!AsociarGrupoUsuario.ValidaCapturaGrupos())
            {
                sb.AppendLine("<li>Debe asignar al menos un Grupo.</li>");
            }

            if (sb.ToString() != string.Empty)
            {
                sb.Append("</ul>");
                sb.Insert(0, "<ul>");
                sb.Insert(0, "<h3>Grupos</h3>");
                throw new Exception(sb.ToString());
            }
        }
Exemplo n.º 2
0
 protected void btnCerrarGrupos_OnClick(object sender, EventArgs e)
 {
     try
     {
         if (!AsociarGrupoUsuario.ValidaCapturaGrupos())
         {
             return;
         }
         btnModalGrupos.CssClass = "btn btn-success btn-lg";
         ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "Script", "CierraPopup(\"#modalGrupos\");", true);
     }
     catch (Exception ex)
     {
         if (_lstError == null)
         {
             _lstError = new List <string>();
         }
         _lstError.Add(ex.Message);
     }
 }