vote up 1 vote down star

I need to pass the & character inside an XML element, but its not liking it, here is a code sample:

XmlDocument doc = new XmlDocument();
XmlElement batch = doc.CreateElement("Batch");
string item = "<field>http://mylink.com/page.aspx?id=1&disp=2</field>"
batch.InnerXml = item;

Its absolutely crucial I put this link inside, so does anyone know how to get around this?

Thank you

flag

2  
why use an xmlwriter, then decide to write out xml manually? – CSharpAtl Nov 4 at 13:59

9 Answers

vote up 6 vote down check

Escape it: &amp;.

string item = "<field>http://mylink.com/page.aspx?id=1&amp;disp=2</field>";
link|flag
vote up 1 vote down

Use .InnerText rather than .InnerXml, and the XmlDocument instance will do all necessary encodings for you, like automatically escaping the & to &

The .InnerXml is used when the string you have is already valid xml which is not to be escaped, which is not the case here.

link|flag
vote up 3 vote down

As others have pointed out, you can just use an &amp; escape sequence. However, the more elegant approach is not to deal directly with the XML at all.

var doc = new XmlDocument();
var batch = doc.CreateElement("Batch");
var field = doc.CreateElement("field");
field.InnerText = "http://mylink.com/page.aspx?id=1&disp=2"
batch.Children.AppendChild(field);

No need to worry about escaping anything, this way. :)

link|flag
vote up 2 vote down

you can use &amp;

link|flag
vote up 4 vote down

Escape it as &amp;. This is called HTML/XML Entities. See more information and list of others entities here and here.

The code should look like this:

string item = "<field>http://mylink.com/page.aspx?id=1&amp;disp=2</field>"
link|flag
vote up 9 vote down

As people are saying, escaping the element will work. However, I find this a little cleaner:

XmlDocument doc = new XmlDocument();
XmlElement batch = doc.CreateElement("Batch");
XmlElement field = doc.CreateElement("field");
string link = "http://mylink.com/page.aspx?id=1&disp=2"
field.InnerText = link;
batch.AppendChild(field);
link|flag
Yes, much more like it. – JonB Nov 4 at 14:27
vote up 2 vote down

If you create the element with the Xml methods it will wrap everything up nicely for you. So use the CreateElement method again and set the InnerText property of the element to your link.

link|flag
vote up 2 vote down
XmlDocument doc = new XmlDocument();
XmlElement batch = doc.CreateElement("Batch");
string item = "<field>http://mylink.com/page.aspx?id=1&amp;disp=2</field>"
batch.InnerXml = item;
link|flag
vote up 10 vote down

You need to escape it as &amp;.

link|flag
lol - how exactly? – JL Nov 4 at 13:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.