Posted on: 2/6/2012 3:03:56 AM | Views : 1243

hello i have code .. programe to upload pic.s....
 
every thing is work fine...
but i dont know how can i get the pic back or display it in the page ...any help this is my coad ... i tried to save the path in session but it dose not work
here is my coad >
protected void Button1_Click(object sender, EventArgs e)/////upload { if (this.FileUpload1.HasFile) { string FileName = this.FileUpload1.FileName; this.FileUpload1.SaveAs(MapPath("~/DPfiles/" + FileName)); this.Labelupload.Text = "Uploading File: " + FileName + " To Server"; // this.SendConfirmationEmail(FileName); this.SaveFileInDB(FileName); } else { this.Labelupload.Text = "No File to Upload, Ple ...

Go to the complete details ...