image is uploaded in to folder success fully but no path is saved in to the database I'm uploading image in a partial view by creating a uploadViewModel
I actually did saved it in db but its sessionId NOT THE PATH so how can I retreive that Image from the database to show in a div
how can I save its path in DB, please tell me in a simple way I'm not too good at this and new to MVC
here is Jquery
<input type="hidden" value="@Session.SessionID" id="sessionId" name="sessionId"/> <div id="file-uploader"> <noscript> <p>Please enable JavaScript to use file uploader.</p> <!-- or put a simple form for upload here --> </noscript> </div> <script src="~/Scripts/fileuploader.js"></script> <scri ...

Go to the complete details ...