Is there any way how to add comments to end of each line in longer multi-line expression in ASP (using VBScript)? I have code like this:
Dim qbsr As New QueryBuilder(conn)
qbsr.Select = "Items.ItemCode as ItemCode,Items.Description as Descr, " & _
"Items.Class_03 as UnitType, " & _ ' ** Cannot add comment here **
"Items.Class_04 as UnitPlc, " & _ ' ** Cannot add comment here **
"Items.Class_05 as UnitArea" ' Comment here works fine
I found similar question, however all answers were about multi-line comments and not adding comments at the end of each lines in multi-line expression.