protected void Button1_Click(object sender, EventArgs e) { bo.IDUsuario = Convert.ToInt32(Session["IDUsuario"]); bo.Nombre = txtNombreEvento.Text; bo.Descripcion = txtDescripcion.Value; bo.HoraInicio = HoraInicio.Value; bo.HoraFin = HoraFin.Value; bo.Costo = Precio.Value; bo.FechaInicio = FechaInicio.Value; bo.FechaFin = FechaFin.Value; string NombreImagen = Path.GetFileName(fupfoto.PostedFile.FileName); if (fupfoto.HasFile) { fupfoto.PostedFile.SaveAs(Server.MapPath("~/Img/") + NombreImagen); Image1.ImageUrl = "~/Img/" + NombreImagen; } //almacenar en la BD bo.Fotografia = "/" + NombreImagen; bo.Aprobacion = 0; bo.Categoria = Convert.ToInt32(Categoria.SelectedValue); bo.Ubicacion = 1; if (dao.GuardarEvento(bo) != 0) { Response.Write("<script language=javascript>alert('Evento Guardado');</script>"); } else { Response.Write("<script language=javascript>alert('Algo salio mal');</script>"); } Limpiar(); MostrarTabla(); }
public int GuardarR(object obj) { int status = 0; status = Tipo_Ser.GuardarEvento(obj); return(status); }