Does anyone know how I can get an asp file to pull an image from a database link...
ie I can upload an image to a folder and then add a record to a database (using a web interface) which will link to the image and then display it on the database.
You can upload your image to a set directory, then add the image relative path to the database, then reference the image path in your asp page after you have read the record from the database.
e.g. image is "bob.gif" you put it in the "images" directory its path is then "images\bob.gif"
in your asp page, get the record from the db and then refer to it and your page should insert "images\bob.gif" where you asked it to.
You are almost there. Where it is showing the link to the image add the html image tag around it. A good example of how this works is to check out the Snitz code for profile images. Both the entering into the database and display.