XmlDocument xdoc = new XmlDocument();
xdoc.Load(Server.MapPath("~/pp1.xml"));
string PersonCount = xdoc.DocumentElement.SelectNodes("//persons/person").Count.ToString();
Response.Write(PersonCount);
A blog about web application development mainly on backend side
Sunday, November 25, 2012
Subscribe to:
Posts (Atom)
What is DaemonSet in Kubernetes
A DaemonSet is a type of controller object that ensures that a specific pod runs on each node in the cluster. DaemonSets are useful for dep...
-
XmlDocument xdoc = new XmlDocument(); xdoc.Load(Server.MapPath("~/pp1.xml")); string PersonCount = xdoc.DocumentElement.SelectNode...
-
In any software development process, it is crucial to understand the differences between various types of classes. Two such classes are ab...
-
A DaemonSet is a type of controller object that ensures that a specific pod runs on each node in the cluster. DaemonSets are useful for dep...