protected void GvAcciones(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "Contratar") { //try //{ int id = int.Parse(GvServicio.Rows[Convert.ToInt32(e.CommandArgument)].Cells[1].Text); ConsultarPaseadorServicioResult Pas = PSUsuario.ServicioPaseador(id); Session["SerIdPas"] = Pas.Idpaseador; Session["SerPasNom"] = Pas.Nombre; Session["SerPasApe"] = Pas.Apellido; Session["SerPasLoc"] = Pas.localidad.ToString(); Session["SerPasSer"] = "Paseo"; Session["SerPasHI"] = Pas.Horainicio; Session["SerPasHF"] = Pas.HoraFin; Session["SerPasPre"] = Pas.precio; Response.Redirect("Servicio.aspx"); //} //catch (Exception ex) //{ // lblText.Text = "Error"; //} } else if (e.CommandName == "VerPerfil") { int id = int.Parse(GvServicio.Rows[Convert.ToInt32(e.CommandArgument)].Cells[0].Text); Paseadores Datos = PSPaseador.ObtenerPerfil(id); Session["PaseadorID"] = Datos.Usuarios.Idusuario; Response.Redirect("PerfilPaseador.aspx"); } }
protected void btnContratar_Click(object sender, EventArgs e) { string Converte = Convert.ToString(Session["Paseador"]); int idpas = int.Parse(Converte); ConsultarPaseadorServicioResult Pas = UsuarioP.ServicioPaseador(idpas); Session["SerIdPas"] = Pas.Idpaseador; Session["SerPasNom"] = Pas.Nombre; Session["SerPasApe"] = Pas.Apellido; Session["SerPasLoc"] = Pas.localidad.ToString(); Session["SerPasSer"] = "Paseo"; Session["SerPasHI"] = Pas.Horainicio; Session["SerPasHF"] = Pas.HoraFin; Session["SerPasPre"] = Pas.precio; Response.Redirect("Servicio.aspx"); }