Beispiel #1
0
 protected void lnkAgregar_Click(object sender, EventArgs e)
 {
     try
     {
         LabelTool.HideLabel(divMensaje2, spnMensaje2, lblMensaje2);
         if (txtElemento.Text != "")
         {
             if (!dtElementos.Columns.Contains("Numero"))
             {
                 dtElementos.Columns.Add("Numero", typeof(string));
             }
             if (!dtElementos.Columns.Contains("Elemento"))
             {
                 dtElementos.Columns.Add("Elemento", typeof(string));
             }
             DataRow dr = dtElementos.NewRow();
             dr["Numero"]   = dtElementos.Rows.Count + 1;
             dr["Elemento"] = txtElemento.Text.ToString().ToUpper();
             dtElementos.Rows.Add(dr);
             txtElemento.Text = "";
             GridViewTool.Bind(dtElementos, grvElementos);
             SetFocus(txtElemento);
             lblContadorElemento.Text = dtElementos.Rows.Count.ToString();
         }
     }
     catch (Exception ex) {
         LabelTool.ShowLabel(divMensaje2, spnMensaje2, lblMensaje2, ex.Message, 'd');
     }
 }
Beispiel #2
0
 protected void lnkAgregar_Click(object sender, EventArgs e)
 {
     try
     {
         LabelTool.HideLabel(divMensaje2, spnMensaje2, lblMensaje2);
         if (hdnValidacion.Value == "")
         {
             DataRow dr = dtProductos.NewRow();
             dr["Producto"]        = txtProducto.Text.ToUpper();
             dr["Caracteristicas"] = txtCaracteristicas.Text.ToUpper();
             dr["Precio"]          = txtPrecio.Text;
             dr["Clave"]           = txtClave.Text;
             dr["Codigo"]          = txtCodigoBarras.Text;
             dtProductos.Rows.Add(dr);
             GridViewTool.Bind(dtProductos, grvProductos);
             ScriptManager.RegisterStartupScript(this, typeof(Page), "invocarfuncion", "LimpiarDatos();", true);
         }
         else
         {
             throw new Exception(hdnValidacion.Value);
         }
     }
     catch (Exception ex)
     {
         Label lblError = this.Master.FindControl("lblError") as Label;
         LabelTool.ShowSingleLabel(lblError, ex.Message, System.Drawing.Color.Black);
         ScriptManager.RegisterStartupScript(this, typeof(Page), "invocarfuncion", "mdlToggle('#mdlError');", true);
     }
 }
Beispiel #3
0
 protected void lnkGuardar_Click(object sender, EventArgs e)
 {
     try
     {
         LabelTool.HideLabel(divMensaje2, spnMensaje2, lblMensaje2);
         if (ValidarCampos())
         {
             LabelTool.ShowLabel(divMensaje2, spnMensaje2, lblMensaje2, "Todo bien.", 's');
             //DataTable dtClasificacion = LlenarTabla();
             //ClasificacionBLL.InsertarClasificacion(1, 1, 0, null, null, null, dtClasificacion);
         }
     }
     catch (Exception ex) {
         LabelTool.ShowLabel(divMensaje2, spnMensaje2, lblMensaje2, ex.Message, 'd');
     }
 }
        protected void lnkGuardar_Click(object sender, EventArgs e)
        {
            try
            {
                LabelTool.HideLabel(divMensaje2, spnMensaje2, lblMensaje2);
                if (ValidarCampos())
                {
                    DataTable dtClasificacion = LlenarTabla();
                    ClasificacionBLL.InsertarClasificacion(1, 1, 0, null, null, null, dtClasificacion);

                    LabelTool.ShowSingleLabel(lblMsgMdl, "Se guardaron los datos.", System.Drawing.Color.Black);
                    ScriptManager.RegisterStartupScript(this, typeof(Page), "invocarfuncion", "modal();", true);
                }
            }
            catch (Exception ex) {
                LabelTool.ShowLabel(divMensaje2, spnMensaje2, lblMensaje2, ex.Message, 'd');
            }
        }