protected void btnGuardar_Click(object sender, EventArgs e) { usuario aux = (usuario)Application["obj"]; usuario obj = new usuario(); obj.nombre = txtNombre.Text; obj.apellidos = txtApellidos.Text; obj.direccion = txtDireccion.Text; obj.ciudad = txtCiudad.Text; obj.telefono = txtTelefono.Text; DateTime time = new DateTime(int.Parse(ddlAnio.SelectedValue), int.Parse(ddlMes.SelectedValue), int.Parse(ddlDia.SelectedValue)); obj.fechaNacimiento = time; obj.tipoUsuario = (usuario.EnumTipoUsuario)ddlTipoUsuario.SelectedIndex; if (aux != null) { obj.Id = aux.Id; obj.Update(); Response.Redirect("FrmCatalogoUsuarios.aspx?op=2"); } else { obj.Create(); Response.Redirect("FrmCatalogoUsuarios.aspx?op=1"); } }
protected void btnGuardar_Click(object sender, EventArgs e) { string nombre = txtNombre.Text; string apellidos = txtApellidos.Text; string direccion = txtDireccion.Text; string ciudad = txtCiudad.Text; string telefono = txtTelefono.Text; DateTime time = new DateTime(int.Parse(ddlAnio.SelectedValue), int.Parse(ddlMes.SelectedValue), int.Parse(ddlDia.SelectedValue)); usuario c = new usuario(); c.nombre = nombre; c.apellidos = apellidos; c.ciudad = ciudad; c.direccion = direccion; c.telefono = telefono; c.fechaNacimiento = time; c.tipoUsuario = usuario.EnumTipoUsuario.CUSTOMER; c.Create(); Response.Redirect("FrmLogin.aspx"); }