Displaying Photos Using A Database

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??
 
J

James MCSE

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
 
A

Andrew Murray

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.
 
Top