publicstringGetXmlNodeValue(stringstrXml,stringstrNodeName,stringstrValueName)
{
try
{
System.Xml.XmlDocumentxmlDoc=newSystem.Xml.XmlDocument();
xmlDoc.LoadXml(strXml);
System.Xml.XmlNodexNode=xmlDoc.SelectSingleNode("//"+strNodeName+"");
stringstrValue=xNode.Attributes[strValueName].Value;
returnstrValue;
}
catch(Exceptionex)
{
returnex.Message; } }