Creating HTML file using textinputstream

Hi,
I want to create a .html file and do editing some value.
I have a problem, because html some of the code are always using ’ " ’ sign for the text,
for example, if I want to write this text,

<html xmlns:v="urn:schemas-microsoft-com:vml"

I cant do like write " <html xmlns:v=“urn:schemas-microsoft-com:vml” "
this is not possible to do it in xojo.

Any other solution…?

Thanks
Regards,
Rivo

This should help you out: http://www.realsoftwareblog.com/2009/03/escaping-quotes.html

Use double quotes:

Dim s as String = “This is a test of the ““emergency”” broadcast system.”

Also: HTML doesn’t require double-quotes: you can use singles instead. Just be careful you don’t mix them up.