Quotes remain in output-file?

Hi,

I’m trying to generate an xml-file.

When writing to the the file, the result is like :

“<?xml vers…”_____

^^

These quotes shouldn’t be there, and because of them, the file can’t be viewed as an xml-file. I tried storing my text in a temp var, but I had no luck with that.

Has anyone else had this problem, and knows how to fix it?

Thanks!

Ken

Subject: Quotes remain in output-file???

to avoid doubl qoutations use print #, instead of write # …

to display single qoutations use |'| …

Subject: RE: Quotes remain in output-file???

Tx!