I have some special characters in my data inside xml.So i am getting error to handle them.
<SubFilePath>http://d2coa5o205622p.cloudfront.net/newswatchforweb&autoPlay=true&autoRewind=false</SubFilePath>
“‘=’ is an unexpected token. The expected token is ‘”;
I know how to handle other special like “<“,”>” ,”\”” ,”\'” ,”&” but how can i handle the “=”?
I am using c#
Wrap your data inside a CDATA block.
Or use
=see: http://www.theukwebdesigncompany.com/articles/entity-escape-characters.php