hi,
i have one xml document. i used to read the xml from webservices using c# and display the xml document content in the popup window. i wish to apply style for the xml element in the xml document.
xml document:
<?xml version="1.0" encoding="utf-8" ?>
<BubbleHelp>
<Module name="ADMIN">
<HelpItem ID="BRANCHID">
<B>Hello</B>World!!
---bold format style is not applying while display it in the popup window
</HelpItem>
</Module>
</BubbleHelp>
webservice code used to read the xml document.
helpTopic[0] = tagnode.InnerText; //text between the node i.e Hello World!!