<SCRIPT language="VBScript" RUNAT="Server">
function f
Dim rs
Dim str
Dim arr
end function
</SCRIPT>
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:
<SCRIPT language="VBScript" RUNAT="Server">
<!-- function f
Dim rs
Dim str
Dim arr
end function-->
</SCRIPT>
How can I get it to comment it with quotes like this:
<SCRIPT language="VBScript" RUNAT="Server">
'function f
' Dim rs
' Dim str
' Dim arr
'end function
</SCRIPT>
Not possible with Visual Studio.