protected void Button2_Click(object sender, EventArgs e)
    {
        List <Pre_venta> lista = new daoPreventa().ConsultarTodos();

        if (lista != null)
        {
            for (int i = 0; i < lista.Count; i++)
            {
                new daoPreventa().Eliminar(lista[i].Id);
            }
            Response.Redirect("FrmVistaProductos.aspx");
        }
    }
 protected void Button1_Click(object sender, EventArgs e)
 {
     if (string.IsNullOrWhiteSpace(txtNombre.Text) || string.IsNullOrWhiteSpace(txtApellidos.Text) ||
         string.IsNullOrWhiteSpace(txtCiudad.Text) || string.IsNullOrWhiteSpace(txtCP.Text) ||
         string.IsNullOrWhiteSpace(txtDireccion.Text) || string.IsNullOrWhiteSpace(txtEmail.Text) ||
         string.IsNullOrWhiteSpace(txtTelefono.Text)
         )
     {
         Response.Write("<script>alert('Hay Uno o mas Campos Vacios!')</script>");
     }
     else
     {
         Response.Write("<script>alert('Venta Realizada!!')</script>");
         limpiar();
         List <Pre_venta> lista = new daoPreventa().ConsultarTodos();
         for (int i = 0; i < lista.Count; i++)
         {
             new daoPreventa().Eliminar(lista[i].Id);
         }
         Response.Redirect("FrmVistaProductos.aspx");
     }
 }