This topic is locked

image source path

3/23/2004 5:27:38 AM
ASPRunnerPro General questions
author

ood day

I have used the asp trial for experiment

i have created a asp page with a descrition column and image column from my data base

the source for the image is set to the Http:localhost.80

very simple question how can i change the source to the image folder on my root directory

Sergey Kornilov admin 3/25/2004

You change image source path by modifing SQL query in ASPRunner:

select ...,

'http://www.yourservername.com/'; + imagefilename as fullimagefilename

from tablename


After that you can use fullimagefilename instead of old image file name.
I hope this helps.