> How can I use spaces in tag names?
> For example <Purge Date>
You can use XmlConvert.EncodeName("Purge Date"), see
<URL:http://msdn2.microsoft.com/en-us/library/system.xml.xmlconvert.encodename.aspx>,
the result is then "Purge_x0020_Date".

Signature
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
matanasescu@gmail.com - 08 Feb 2008 20:51 GMT
> matanase...@gmail.com wrote:
> > How can I use spaces in tag names?
[quoted text clipped - 8 lines]
> Martin Honnen --- MVP XML
> http://JavaScript.FAQTs.com/
Thanks Martin, this is exactly what I need.