Paragod2000
Programmer
What we have is a details page pulling info from an Access97 database. One of the things it pulls out is the location of a photo to be displayed. (/images/my folder/my first pic.jpg) To this location we add an SRC tag and we have dynamic picture. See code below. Well, this works fine for Internet Explorer, but Netscape can not support spaces the spaces in the name. What we are looking for is some way so that we may display the pics in Netscape without having to rename all of them and then go into the database and make all of the address changes.
<img src="<%=(Recordset1.Fields.Item("Photo2Name".Value)%>">
<br>
<%=(Recordset1.Fields.Item("Photo2Title".Value)%>
Where Photo2Name is a hyperlink field holding location of the picture (/images/my folder/my first pic.jpg) and Photo2Title is a text field.
If anyone can think of anything that might help us, we would be most gratefull.
Thanks,
Tom
<img src="<%=(Recordset1.Fields.Item("Photo2Name".Value)%>">
<br>
<%=(Recordset1.Fields.Item("Photo2Title".Value)%>
Where Photo2Name is a hyperlink field holding location of the picture (/images/my folder/my first pic.jpg) and Photo2Title is a text field.
If anyone can think of anything that might help us, we would be most gratefull.
Thanks,
Tom