Hey,
I have recently run into a bit of annoyance, as I am writing asp pages with extremely long multiline queries. For example, and this is just an example
Dim query
query = "select * " & _
"from table1, table2, table3 " & _
"where table.col1 = table2.col2 " & _
"and cond 1" & _
"and cond 2 "...