I know that similar questions have been asked A LOT but none of the answers have been any help to me yet. Pretty much, I am working with an MVC project and a CL project someone else created from a former desktop app that was actually supposed to be a web app (long and frustrating story). He made it so an image generated programatically is stored on the User's C:/ drive and then later displayed, which works fine in a desktop app, but not so much in a web app.
I have tried the <img src="file:/filepath">
, but no luck. I know that I wouldn't be able to get to a file on a user's C:/ drive directly and should upload the image to the server and then go from there, but I have no idea how to go about that, and was hoping that someone could point me in the right direction.