T
Toni
I have an application that inserts literal strings (raw strings) into an ASP template
that I can then work with. The problem is that I want to massage these strings in
ASP/VBScript and some of these strings contain quotes.
My ASP template can contain
myString = "$placeholder$"
where $placeholder$ is a raw string entered by the application.
This works fine if $placeholder$ doesn't contain any quotes, but if it does, the source
can for example look like this:
myString = "The Senator said "It's not my fault", then ran to his car"
which will, of course, generate an ASP error.
I have no control over the literal strings that may be entered, so I can't double-quote
them. How can I store these strings???
THANKS!!!
that I can then work with. The problem is that I want to massage these strings in
ASP/VBScript and some of these strings contain quotes.
My ASP template can contain
myString = "$placeholder$"
where $placeholder$ is a raw string entered by the application.
This works fine if $placeholder$ doesn't contain any quotes, but if it does, the source
can for example look like this:
myString = "The Senator said "It's not my fault", then ran to his car"
which will, of course, generate an ASP error.
I have no control over the literal strings that may be entered, so I can't double-quote
them. How can I store these strings???
THANKS!!!