Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
~389 People Reached
Favorite Forums
Web Development x 1
2 Posted Topics
Re: Use System.Xml.SelectNodes( strXPath ) or System.Xml.SelectSingleNode( strXPath ). Construct the strXPath something like this "/aiml/category/pattern" Good luck. | |
Re: Here's some code in ASP.NET C# to do what you're talking about. [code=c] // Prepare the response, as XML Response.ContentType = "text/xml"; // Prepare the acknowledgement XmlDocument replyDoc = new XmlDocument(); replyDoc.LoadXml("<response/>"); replyDoc.DocumentElement.SetAttribute("version", "Response: " + System.DateTime.Now + " " + Server.MachineName); try { XmlDocument xml = new XmlDocument(); if … |
The End.