Right on, I will try this out. I have a few questions though about what parameters I have to change I have highlited things I need clarification on.
var conn = Server.CreateObject("ADODB.Connection"

;
conn.Open(
"dsn=ftwebdocs");
var rs = Server.CreateObject("ADODB.Recordset"

;
rs.Open("select Title, FlashDate, Name, DocTypeDI from mytable", conn,
1,3,1);
while( !rs.EOF){
Response.Write( rs("Title"

+ ": " + rs("Name"

+ "<br>"

;
rs.MoveNext();
}
rs.Close();
conn.Close()
rs = null;
conn = null;
The reason I need to loop through a recordset is to get the directory path of certain images that are stored in fields in the table. So each time I loop through the recordset I need to save the value retrieved into a seperate variable. Then pass these variables to a seperate function to set my source values of 3 different images that are retrieved from the recordset. I hope this makes sense.
I have to add again that I appreciate all of your help