I’m creating an XML document and I want to store URLs inside the a node like so:
<ns:url>http://example.com</ns:ulr>
My question is, do I need to encode/escape the URL in anyway?
If I do, the will the .Net XmlDocument object handle this for me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In general most DOM implementations (including XmlDocument) should handle any necessary escaping of text content by default.