protected void Button1_Click(object sender, EventArgs e) { DAL.DALPerfil perfil = new DAL.DALPerfil(); Modelo.Perfil uc = perfil.SelectLogin(user.Text, encrypt(senha.Text)); if (uc != null) { Session["perfil"] = uc; Response.Redirect("~/paginaperfil.aspx"); } }
protected void Page_Load(object sender, EventArgs e) { if (Session["perfil"] == null) { Response.Redirect("login.aspx"); } u = (Modelo.Perfil)Session["perfil"]; Image1.ImageUrl = "~/imagens/" + u.arquivo; user.Text = u.usuario; biografia.Text = u.biografia; nome.Text = u.nome; nome2.Text = u.usuario; divizona.Attributes["style"] = "background-image: url('../imagens/p2.jpg');"; }
protected void Button1_Click(object sender, EventArgs e) { Modelo.Perfil aPerfil; DAL.DALPerfil aDALPerfil; aDALPerfil = new DAL.DALPerfil(); Modelo.Perfil x = aDALPerfil.SelectParaBusca(user.Text); if (senha.Text != senhac.Text) { Response.Write("<script>alert('Senha não coincidem!');</script>"); } else if (x != null) { Response.Write("<script>alert('Usuário já existe!');</script>"); } else { aPerfil = new Modelo.Perfil(0, nome.Value, genero.Value, profissao.Value, Int32.Parse(dropestado.SelectedValue), Int32.Parse(DropDownListCidade.SelectedValue), bairro.Text, tel.Value, textarea2.Value, FileUpload1.FileBytes, FileUpload1.FileName, user.Text, encrypt(senha.Text)); aDALPerfil.Insert(aPerfil); string filename = Request.PhysicalApplicationPath + "imagens\\" + FileUpload1.FileName; FileUpload1.SaveAs(filename); Modelo.Categoria_Perfil aCP; DAL.DALCategoria_Perfil aDALCP; aDALCP = new DAL.DALCategoria_Perfil(); DAL.DALCategoria DALcat = new DAL.DALCategoria(); int id2 = aDALPerfil.SelectParaCategoria(user.Text, encrypt(senha.Text))[0].id; if (check1.Checked) { aDALCP.Insert(DALcat.SelectAll()[0].id, id2); } if (check2.Checked) { aDALCP.Insert(DALcat.SelectAll()[1].id, id2); } if (check3.Checked) { aDALCP.Insert(DALcat.SelectAll()[2].id, id2); } if (check4.Checked) { aDALCP.Insert(DALcat.SelectAll()[3].id, id2); } if (check5.Checked) { aDALCP.Insert(DALcat.SelectAll()[4].id, id2); } if (check6.Checked) { aDALCP.Insert(DALcat.SelectAll()[5].id, id2); } Response.Write("<script>alert('Cadastrado com sucesso!');</script>"); Response.Redirect("login.aspx"); } }