I am using asp.net to create a mobile web application to manage bike parts I have gotten the file upload working but now I need to figure out how to get an image control to display the image from its new location on a server.
I will be saving the image file path in a database I just need to figure out how to get that new file path for the image.
this is the code I am using for the file upload
if (this.FileUpload1.HasFile)
    {
      this.FileUpload1.SaveAs(Server.MapPath("~/Mobile/" + FileUpload1.FileName));
    }
I can likely figure this out but just in case I can't figured I would post the question now than later as it can take a while to get an answer and I have a dead line