HI firnds I have xml string with many tag names like (ID,NAME)..
So my question is.. I need a code to find out perticular tagname like ( welcome) this is the Tag Name........ for welcome name i need to find out ID.. for that.. it may be any where in the XML string
so how I need to find out..
I wrote the code but its allways taking the first filed id..
XmlDocument xmldoc1 = new XmlDocument();
xmldoc1.LoadXml(wel);
XmlNodeList Info;
Info = xmldoc1.GetElementsByTagName(
"Id");int wel;
wel=
Convert.ToInt32(role.Item(0).InnerText);
bec I am not chekcking (welcome) tag in the xml string..
I need this code in ASP.NET please can any one help me out regarding this..
thanks