> Can anyone help me with some ASP code which will put a
> recordset which consists of one column of data into an array?
> (The number of rows in the database will vary over time.)
>
it's a built-in function (yay!)
Set oRS = Server.CreateObject ("ADODB.Recordset")
RSarray = oRS.GetRows()
=)
sgd