Problem You want to get url link from sitemap.xml file.
Solution: After downloading sitemap.xml string from internet by using WebClient, you can easy get url link form it by using Linq2Xml.
Here is the snippets code both C# and VB.NET
For demo purpose I use Console application.
C# using System; using System.Linq; using System.Net; using System.Xml.Linq; namespace CS { classProgram { staticvoid Main(string[] args) { WebClient client = ne...
No comments yet, be the first one to post comment.