Response.write="And I say, "How are you?"."

  • Thread starter Thread starter Guest
  • Start date Start date
You have to escape them. You can use \" if I remember correctly as the
escape character for a doublequote.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
That's only good for C# or Java, the escape characters that you mention
Mark, for VB.NET just double up the double quotes inside the outer ones,

Response.Write("So I said, ""How are you?""")

J.
 
VB.NET
"And I say, ""How are you?""."

C#
"And I say, \"How are you?\"."

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***********************************************
Think outside the box!
***********************************************
 
Back
Top