how to make database images viewable

J

Jan

am setting up an online store catalog using an Access database - have images
stored in folder in Front Page, & their ID that points to them stored in
database - have read the 2 recommended articles dealing with this, but have
no experience in Visual Basic & can't figure out what I need to do to program
the images to appear - the ASP pages are working fine so far - all text comes
up ok.......

Any help deeply appreciated - website I'm working on is
http://www.celtic-chords.co.uk

Thanks!
 
M

MD Websunlimited

Hi Jan,

The process is to include the field in the database pointing to the image in the img tag. For example:

<img src="<% =rs("ImagePath") %>" >

The <% =rs("ImagePath") %> will be replaced with whatever the field in the database of the same name contains.

HTH,
 
G

Guest

-----Original Message-----
am setting up an online store catalog using an Access database - have images
stored in folder in Front Page, & their ID that points to them stored in
database - have read the 2 recommended articles dealing with this, but have
no experience in Visual Basic & can't figure out what I need to do to program
the images to appear - the ASP pages are working fine so far - all text comes
up ok.......

Any help deeply appreciated - website I'm working on is
http://www.celtic-chords.co.uk

Thanks!
.
 

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

Top