Hi,
this is my code to display all records in a sql database
<%
Do Until QueryDB.EOF
Response.Write(QueryDB.Fields.Item("ProductMake"
.Value)
Response.Write(QueryDB.Fields.Item("ProductDescription"
.Value)
QueryDB.MoveNext
Loop
%>
Pretty basic. My problem is I need each record to be displayed on its own line. Right now, all records appear on the same line until the screen wrap around. Hope this makes sense.. Any suggestions?
This is what gets returned..
Sony 21" Trinitron Sony 22" Trinitron Sony 48" Trinitron
I need
Sony 21" Trinitron
Sony 22" Trinitron etc..
Thanks for the help!
this is my code to display all records in a sql database
<%
Do Until QueryDB.EOF
Response.Write(QueryDB.Fields.Item("ProductMake"
Response.Write(QueryDB.Fields.Item("ProductDescription"
QueryDB.MoveNext
Loop
%>
Pretty basic. My problem is I need each record to be displayed on its own line. Right now, all records appear on the same line until the screen wrap around. Hope this makes sense.. Any suggestions?
This is what gets returned..
Sony 21" Trinitron Sony 22" Trinitron Sony 48" Trinitron
I need
Sony 21" Trinitron
Sony 22" Trinitron etc..
Thanks for the help!