I'm sure this has come up before (It seems pretty simple), but I can't seem to find it after a half hour of searches on the forum.
I'm trying to create an html file with a table. I need to write the line:
However whenever I try to put that in a WriteLine function, it doesn't like the quotes around the 100%.Code:<TABLE width="100%">
VB Code:
Dim makehtml As StreamWriter = new StreamWriter(path) makehtml.WriteLine("<TABLE width="100%">")
How do I get those quotes to appear in the html file?




Reply With Quote