Wednesday, July 9, 2008, Steve Adcock wrote:
> I don't know VB Script, but if I had to take an (educated?) guess, I would
> probably tell you to use double double-quotes to surround your center text.
> In Unix-based programming languages, the escape character is generally a
> backslash. In Microsoft, I THINK it's using the character twice. So...
> sw.write("<h1 align=""center"">")
---
I do know VBScript, and you are correct!
That said, some interpreters will balk at the parentheses when calling
a sub, so I'd write:
sw.Write "<h1 align=""center"">"
HTH,
--
Geoff
.