If you include \at the beginning of your line, asp recognizes spaces.
<%@ Language=JavaScript %>
<%
var s = "\
\ a";
Response.Write(s.length);
%>
I was unable to use the character \to create multi-line strings. Neatly, but I could not find the documentation for this. Think it just eludes a line break? Do you have a link to the link?
, :
<pre>
<%
var s = "\
unescaped";
Response.Write(s);
Response.Write("\n");
s = "\
\ escaped";
Response.Write(s);
%>
</pre>
:
unescaped
escaped