I want to know a proper way of saving image path to SQL server when working with ASP.net. I'm using SQL server 2005 & VB 2008.
|
feedback
|
closed as not a real question by danlefree♦ Mar 9 at 4:58
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Once you've uploaded it will be somewhere in your webroot most likely (unless you specify otherwise) What I've done in the past for this type of thing (using PHP though) is rename the file to something that will be unique if they're all going into the same directory (like add the timestamp to the image name at the beginning. Then once you have that name, write only it to your DB as a varchar datatype. When you need to call it, you should know the path where your upload script is storing the files, so you would just concat the name stored in the DB to the "img_root_path" or whatever you want to call your path to the files. | |||
|
feedback
|
C:\Users\Cheezy\Desktop\imagenamelike that – Cheezy Feb 6 at 16:49