Hi,
is there a way to emulate perl's heredoc functionality in VBScript?
Basically what I want to do is:
so that everything between Response.Write and EOF gets printed. I can not write another line of
(but I fear I must...)
any tips, help etc. would be appreciated!
Thanks
--chris
is there a way to emulate perl's heredoc functionality in VBScript?
Basically what I want to do is:
Code:
Response.Write(<<EOF)
<h1>header</h1>
body text...
and finally...
EOF
so that everything between Response.Write and EOF gets printed. I can not write another line of
Code:
strOut = strOut & "my next line of code"
(but I fear I must...)
any tips, help etc. would be appreciated!
Thanks
--chris