Displaying Photos Using A Database

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

Can this be done with FP? if it can be done, can someone tell me how or
point me to where that information is??
 
Easily,
The most efficient way is to just store the picture name and then query the
dbase and return the results with something like

Response.write ("<img src=")
Response.write RS (imagename)
Response.write (".jpg>")

This assumes you are using asp and are familiar with database queries if you
need more details see this link.

http://www.pvinter.com/fp2000/aspwebwiz/page00010.htm
 
look up 'display picture in access database' in "Help". there is a
comprehensive step-by-step tutorial on how to display images within the
Database Results Wizard.

www.frontpagewiz.com is also a good starting point.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top