Beispiel #1
0
        protected void RegistrarButton_Click(object sender, EventArgs e)
        {
            CxC cxc = new CxC();

            cxc.IdTipoDocumento = Convert.ToInt32(TipoDropDownList.SelectedValue);
            cxc.IdMiembro = Convert.ToInt32(MiembroDropDownList.SelectedValue);
            cxc.Fecha = Convert.ToDateTime(FechaTextBox.Text);
            cxc.IdClub = Convert.ToInt32(ClubDropDownList.SelectedValue);
            cxc.Monto = Convert.ToDouble(MontoTextBox.Text);

            if (TipoMultaDropDownList.Visible == true)
            {
                cxc.IdTipoMulta = Convert.ToInt32(TipoMultaDropDownList.SelectedValue);
                cxc.Insertar();
            }
            else
            {
                cxc.InsertarNull();
            }
        }