I'm binding a control to an XmlDocument and using the "XPath" binding expression to output the data:
<div class="Bio"><%# XPath("Biography") %></div>
However, this returns the InnerText property of the "Biography" element, not the InnerXml. This means it strips all inner tags from it, which is not what I want.
I looked through the XPathBinder object, but I can't find anyway to get it to return InnerXml rather than InnerText