vbscript comment block of code (selected lines)

norapyongyang

New Member
\[code\]<SCRIPT language="VBScript" RUNAT="Server"> function f Dim rs Dim str Dim arr end function</SCRIPT>\[/code\]If I highlight the function, then click on Comment out selected lines button, or press Ctrl+K, Ctrl+C, it comments the function as HTML, like this:\[code\]<SCRIPT language="VBScript" RUNAT="Server"><!-- function f Dim rs Dim str Dim arr end function--></SCRIPT>\[/code\]How can I get it to comment it with quotes like this:\[code\]<SCRIPT language="VBScript" RUNAT="Server"> 'function f ' Dim rs ' Dim str ' Dim arr 'end function</SCRIPT>\[/code\]
 
Back
Top