![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
|
is this what you mean:- img src="<?php echo $row_rsStaff['picbig']; ?>" i.e., click insert image/data source, etc Craig "jjrmy1" <jjrmy1 (AT) earthlink (DOT) net> wrote in message news:cemoeo$mu4$1 (AT) forums (DOT) macromedia.com... anyone have an idea as to how i can make a repeating region on one page when the record set is on another? What I want repeating is an image who's source is a recordset on another page. The record set is to a blob in an access table and it won't work if it's on the same page as the image but i need to make the image repeating so it shows all pics. code for recordset: !--#include file="Connections/myimages.asp" -- % Dim Recordset1 Dim Recordset1_numRows Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_myimages_STRING Recordset1.Source = "SELECT image_blob FROM MYIMAGES" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2 Recordset1.LockType = 1 Recordset1.Open() If Not Recordset1.EOF Then Response.ContentType = "image/jpeg" Response.BinaryWrite Recordset1("image_blob") End If Recordset1_numRows = 0 % % Recordset1.Close() Set Recordset1 = Nothing % code for image: img src="file with recordset" border="0" any help would be appreciated thanks |
![]() |
| Thread Tools | |
| Display Modes | |
| |