Urgent--Help
I have a string ...say
String Content="<?xml version="1.0"?>
<page_data>
<template>home.htt</template>
<template_data></template_data>
<content>
<main><![CDATA[
><div><span class="Heading2">Welcome to Immediacy</span></div>
<div>Immediacy is an e-business software provider specialising in
content managment solutions. We aim:</div>
<ul type="disc">
<li class="MsoNormal">To provide world class content management
solutions that are within financial reach of the vast majority of
businesses</li>
<li class="MsoNormal">To enable organizations to communicate
effectively by empowering individuals with the knowledge to take
part</li>
<li class="MsoNormal"><span lang="EN-US">To provide customers with
a competitive advantage by accelerating publishing and lowering
production costs</span></li>
</ul>
<p class="MsoNormal">?</p>
<hr color="#66cc66" size="2" />
]]></main><HEAD><![CDATA[
><script language="Javascript">
// User editable scripts
function userinit()
{
// Any user edited initialisation here
}
</script>
<!--USER EDITS GO HERE-->
]]></HEAD><sidebar><![CDATA[><DIV>?</DIV>]]></sidebar></content>
</page_data>";
This value for String is an Xml content which I am getting from database...
Now I want to parse thru this String to get the node names and values...
Can Anybody help me...To approach the right way

