Can anybody point whtz rong wid this code. It is giving value in Immediate
Window, also looping through the code.But is not displayin data in browser.
???
---------------------------------------------------------
while (xmlTextReader.Read())
{
if(xmlTextReader.NodeType == XmlNodeType.Element)
{
Response.Write("<" + xmlTextReader.Name);
while (xmlTextReader.MoveToNextAttribute())
{
// Read attributes
Response.Write(" " + xmlTextReader.Name + "='" + xmlTextReader.Value +
"'");
}
Response.Write(">");
}
}
----------------------------------------------------------
Regards
Rohit Arora