Hi, I'm kinda a newbie in VB.
A need to create a file ( a playlist .asx) And it has several tags
the file is something like this:
[HTML]<ASX VERSION = "3.0" >
<ENTRY>
<TITLE> My title</TITLE>
<REF HREF = "path\to\my\vid eo.wmv" />
</ENTRY>
</ASX>[/HTML]
I have this piece of code:
The problem is that I don't know how to "say" to VB to write the "quotes"!!
It's messign everything because the compiler reads the quote as the end of the string,
How can I say this is to print and not part of my code?
Thanks for any help,
João
A need to create a file ( a playlist .asx) And it has several tags
the file is something like this:
[HTML]<ASX VERSION = "3.0" >
<ENTRY>
<TITLE> My title</TITLE>
<REF HREF = "path\to\my\vid eo.wmv" />
</ENTRY>
</ASX>[/HTML]
I have this piece of code:
Code:
My.Computer.FileSystem.WriteAllText("c:\temp\filename.asx", "<ASX VERSION = "3.0" ", false)
It's messign everything because the compiler reads the quote as the end of the string,
How can I say this is to print and not part of my code?
Thanks for any help,
João
Comment