I\'m trying to populate a with \'s on a site with Classic ASP/VBScript. The values are read and taken from an SQL Serv
Try this:
Dim a Do while not rows.Eof a = rows.Collect("specialty") Response.Write("" & a & "") rows.MoveNext Loop