Forum Moderators: open
I thought SQL Server was like an engine to translate code and where you could store a database. I didn't know you could store actual images as well.
If what you are trying to do is upload images using a form and then retreive this image in an asp page I think you can use PHP to upload (tutorial here: [developerfusion.com...] and then use your database to store the path to your image trhough an asp form.
I usually use a form to populate a db, so the only thing I do is to write the image name next to the other data relating to this particular database entry and retreive it on the display page.
Hope this helped
Leo
Generally I store the path to where the image is. If you are doing any uploading save it to somewhere being a /dir/dir and then store it in the Database respectively path wise
when I do something like that for my not so computer literate customers, I usually manually type the image path on the diplay page and dynamically the image name.
They only have to enter the name of the pic they uploaded (save them a lot of thinking and me a lot of hassle from my customer who have problem retrieving the path ;) )
Leo
If you are looking for a good ASP solution, I suggest SoftArtisans FileUp. My hosting company offers it as a free component.
With regards to storing images in SQL Server. I will echo the sentiments of the others, its much better to just store the URL to the image in your DB and retrieve it and bind it to your image dynamically.