In ASP you can pretty much display your results any way you wish
Let's say you got something like this...
Code:
'This is all your DB stuff
SQL = "SELECT * FROM Query_movie WHERE title ='Heat'"
SET Rs = Server.CreateObject("ADODB.Recordset")
Rs.Open SQL, objConn
'Here goes what you see on screen
Response.Write(Rs("title") & " " & Rs("year"))
DO WHILE NOT Rs.EOF
Response.Write(" " & Rs("actor"))
Rs.MoveNext
LOOP
That will stick them all in a line.
Hope this helps!