999ANDRE999 Posted January 10, 2017 at 04:36 PM Report Share #601915 Posted January 10, 2017 at 04:36 PM Olá pessoal, Preciso de atualizar uma imagem num site através de upload. Uso o código abaixo para fazer isso: using System; using System.Collections.Generic; using System.Linq; using System.Drawing; using System.IO; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; public partial class HR_Team : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { if (!Request.IsAuthenticated)//não autenticado { Response.Redirect("~/Account/Login.aspx"); } if (!Page.IsPostBack)//autenticado { } } } protected void btnUpload_Click(object sender, EventArgs e) { if (FileUpload1.HasFile) { FileUpload1.SaveAs(Server.MapPath("~/images/rh/organigrama/" + FileUpload1.FileName)); Image1.ImageUrl = "~/images/rh/organigrama/" + FileUpload1.FileName; } } } Quando carrego para fazer o upload aparece a imagem. O meu problema é que se sair da página e voltar a entrar a imagem desaparece. Alguem me consegue ajudar? Obrigado 🙂 Link to comment Share on other sites More sharing options...
Solution 999ANDRE999 Posted January 11, 2017 at 04:07 PM Author Solution Report Share #601948 Posted January 11, 2017 at 04:07 PM Boa pessoal, Já consegui que a imagem ficasse no portal. Bastou forçar o seu carregamento depois de fazer o upload no page load. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now