siteMapNode Question

  • Thread starter Thread starter Leo
  • Start date Start date
L

Leo

I am trying to create a siteMapNode:
<siteMapNode title="Finance & Admin"

However, it doesn't like the "&" in the string. Do I have to use some
escape sequence to make it work?
 
Replace "&" with the "&amp;" escape sequence.

"&" is one of 5 illegal characters in XML.

The other 4 illegal characters are : < , > , ' , and " .

( Less than, greater than, apostrophe and quotation mark. )

They must all be escaped if included in XML files.




Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top