faqts : Computers : Programming : Languages : Asp : ASP/VBScript : Database Backed Sites : Microsoft Access

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

15 of 26 people (58%) answered Yes
Recently 3 of 10 people (30%) answered Yes

Entry

I'm saving the images path through the asp in access now i want to show them on ASP frontend how will i do that ?

Jun 4th, 2002 06:32
Luiz Paulo Rosa, Preeti Sikri,


If you have the image link into your Access table, just put the record 
in SRC field of IMG tag.
<%
RecSet.Open "SELECT ImagePath FROM tblImages", Conn, 3, 3
%>
<IMG SRC="<%=RecSet("ImagePath")%>" BORDER=0>
Supposing you have an open Recordset opened called 'RecSet' and the 
column in your table (tblImages) is called 'ImagePath'
I hope this can be helpful.
Feel free to send an email for further explanations.



© 1999-2004 Synop Pty Ltd