I want to write a block of text to a filehandle, and I'm wondering there is an easy way to do this in VBScript.

If I were using PerlScipt I would do something like...

Code:
write myFH, <<<END
<p>This is my HTML enriched block of text that may contain
"quotes" as well as some $aspVariables.  The variables should be
should be replaced as neccesary but the quotes should be ignored.</p>
END
My PerlScript syntax may be off a little, but I think you get the idea. I just hate using myFH.Write() over and over again.