Posts
 
Reputation
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 Tags
xml x 2
c# x 1
asp x 1

2 Posted Topics

Member Avatar for usg

Use System.Xml.SelectNodes( strXPath ) or System.Xml.SelectSingleNode( strXPath ). Construct the strXPath something like this "/aiml/category/pattern" Good luck.

Member Avatar for William Walseth
0
208
Member Avatar for montherz

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 …

Member Avatar for William Walseth
0
177

The End.