|
|
|
|
|
| | |
|
Active Server Pages ASP control controls class classes module script Scripts applet CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Loading Images from access to asp help!!!!!! |
From: |
Pete |
Date: |
2/16/1999 10:49:30 AM |
IP: |
193.133.140.50 |
I alway just store the images URL in the database and then use this to display the image.
<% Set DBCon = Server.CreateObject("ADODB.Connection")
Set DBRs = Server.CreateObject("ADODB.Recordset")
Open DB
DataConn.Open "DSN=DBName"
SQL = "SELECT * FROM tablbase "
DBRs.Open SQL, DBCon
While Not DBRs.EOF%>
<img src="<%= DBRs("imageURL")%>">
<%Wend
DBRs.Close
DBCon.Close%>
Works for me any way.
Pete |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|