Dynamic Graphic file display

  • Thread starter Thread starter Jacqueline
  • Start date Start date
J

Jacqueline

I have FrontPage 2002, Windows 2000 and IIS installed on
my PC. I want to Dynamic display Graphic files either from
a file in a directory structure based on graphic name (in
text format in Access) that has been retrieved from
database. Or do we need to insert all graphics into
Access database to retrieve jpg, gif etc type files? How
do we do that with easy?

Thanks,
Jacqueline
 
The best approach is to just have the filename within the database then
create a dynamic link to the images on your pages where you just insert the
filename of the image, like:

<img src="../photos/<%=recordset("fieldname")%>" width="200">

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Back
Top