E
Erik Moore
You'll want to load the document into a DOM parser, and go from there:
XmlDocument doc = new XmlDocument();
doc.Load("http://333.333.333.90:7900/UserVerify?UserID=abc&Password=123");
XmlNode someNode = doc.SelectSingleNode("/somenodename");
string someValue = someNode.InnerText;
Check the docs for parsing XML documents using the XmlDocument object
XmlDocument doc = new XmlDocument();
doc.Load("http://333.333.333.90:7900/UserVerify?UserID=abc&Password=123");
XmlNode someNode = doc.SelectSingleNode("/somenodename");
string someValue = someNode.InnerText;
Check the docs for parsing XML documents using the XmlDocument object