There are typically two ways to express the string that contains double quotation marks. For example, suppose you have following string in VB6:
<a href="http://www.sina.com">sina</a>
You can express this string in one of two ways, both listed below:
-
Dim tem As String
tem = "<a href=" & """" & "http://www.sina.com" & """" & ">sina</a>"
-
Dim tem As String
tem = "<a href=" & Chr(34) & "http://www.sina.com" & Chr(34) & ">sina</a>"