Quick post today about something I should've found obvious. Posting here so I never forget.
When binding in ASP.NET with the XmlDataSource, you can easily use Eval("") to bind to the node properties. However, I couldn't for the life of me figure out how to bind the actual node inner value.
For example if I have an xml file like this:
<images>
<image src="imagea.jpg" alt="Alt Text A">
<![CDATA[<p>Caption A</p>]]>
</image>
<image src="imageb.jpg" alt="Alt Text B"...