I have been trying to make images appear in a table from a database i have created in MS Access this code
<td><%=(Recordset1.Fields.Item("Image").Value)%></td>
is the code that is original used that shows the path, i was told to replace the code with the one below the original but i seem to be getting an error in the table:
<td><IMG SRC = "Images/<%=(Recordset1.Image)%>"></td>
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'Image'
Any ideas on how to make the image appear?
Thanks