Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. String Num_Control = txtNControl.Text;
  2. String Nombre = txtNombre.Text;
  3. String Apellido_Paterno = txtAPaterno.Text;
  4. String Apellido_Materno = txtAMaterno.Text;
  5. String Correo = txtCorreo.Text;
  6. String Curp = txtCurp.Text;
  7. String Fecha_Nacimiento = txtFecha.Text;`
  8.  
  9. txtFecha.Text = Convert.ToDateTime(reader["Fecha_Nacimiento"]).ToString("dd/MM/yyyy");
  10.  
  11. cmd.Parameters.AddWithValue("@FN", Convert.ToDateTime(txtFecha.Text));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement