R
Ronald S. Cook
This XML works fine:
XmlNodeList _XmlNodeList = _XmlDocument.GetElementsByTagName("Path");
However, I want only the particular "Path" element that is nested here:
DeploymentData/AvailableTemplates/FormatTemplate/BackgroundUrl/Path
This doesn't work:
XmlNodeList _XmlNodeList =
_XmlDocument.GetElementsByTagName("DeploymentData/AvailableTemplates/FormatTemplate/BackgroundUrl/Path");
Any idea what does?
Thanks.
XmlNodeList _XmlNodeList = _XmlDocument.GetElementsByTagName("Path");
However, I want only the particular "Path" element that is nested here:
DeploymentData/AvailableTemplates/FormatTemplate/BackgroundUrl/Path
This doesn't work:
XmlNodeList _XmlNodeList =
_XmlDocument.GetElementsByTagName("DeploymentData/AvailableTemplates/FormatTemplate/BackgroundUrl/Path");
Any idea what does?
Thanks.