Exemple #1
0
        private void marcarletrapagada()
        {
            string[] strArray = this.txtcuota.Text.Split(new char[] { '|' });
            string   mCH      = "";

            if (ALCSA.FWK.Web.Control.ExtraerValorComoEntero(ddlNumeroCheques) > 1)
            {
                mCH = "S";
            }

            foreach (string str4 in strArray)
            {
                if (string.IsNullOrEmpty(str4))
                {
                    break;
                }
                Transaccion.ActualizaPagoCuotaColegio(str4, mCH);
            }
        }