Display MS Access images in webpage (Intranet)
Hey all, ive just found this link http://forums.adobe.com/message/3556930 which is pretty much close to my problem. I am using DW CS4 and asp classic to pull data from my Access db using a Recordset.
I can see all the text except the image link (only comes up as a red cross in white square) on my browser. I am using a Localhost server ( IIS ) setup, so it should show.
What could be wrong? Here's the code:
<td width="13%" height="33" align="left" valign="top"><label><img src="<%=(Recordset.Fields.Item("Content Type").Value)%>"></label></td> <td width="16%" align="left" valign="top" class="main"><label> <input name="contact" type="text" class="p" id="contact" value="<%=(Recordset.Fields.Item("contact").Value)%>" readonly="readonly"> </label></td> <td width="15%" align="left" valign="top" class="main"><label> <input name="title" type="text" class="p" id="title" value="<%=(Recordset.Fields.Item("title").Value)%>" readonly="readonly"> </label> </td> <td width="32%" align="left" valign="top" class="main"><label> <textarea name="notes" cols="50" rows="2" readonly="readonly" class="p" id="notes"><%=(Recordset.Fields.Item("notes").Value)%></textarea> </label></td> <td width="15%" align="left" valign="top" class="main"><label class="p"> <input name="sale" type="text" class="p" id="sale" value="<%=(Recordset.Fields.Item("sale").Value)%>" size="20" readonly="readonly"> </label> </td> <td width="9%" align="left" valign="top" class="main"><label> <input name="date" type="text" class="p" id="date" value="<%=(Recordset.Fields.Item("dbdate").Value)%>" size="12" readonly="readonly"> </label></td> </tr>
In my Access Table the image is store as a "OLE Object" if it helps.
Thx in advance
