I am currently trying to figure out how to add comment within a line continuation statement on ASP classic. Our code management requirement requires us to write a Start block and End block to mark the place where we did a change. For example.
Old code
arrayName = Array("FIRST_NAME", _
,"LAST_NAME" _
,"ADDRESS"
)
New code
arrayName = Array("FIRST_NAME" _
,"LAST_NAME" _
,"ADDRESS" _
' 2011/09/27 bob Added new column for XYZ support Start
,"NEW_COLUMN" _
' 2011/09/27 bob Added new column for XYZ support End
)
The new code is causing an error since the underbar cannot be placed within the comment. Are there anyway to place code management comment between such lines? Just want to see if I may have missed other options. I think there is none but what do you guys/gals think?