C# Get Text Which Replaces Text From Span Tags Of An HTML Code
I have to do a console application in C# which reads some text from specific webpages. Now I have some problems because I dont know how to read text between tags. To begin with, I
Solution 1:
Just so you'll have it handy:
- Agility Pack - codeplex site
- Html Agility Pack Test Bed - great tool if you're going to work with agility pack.
- XPath tutorial on w3schools. You want to read this before you play with Agility.
Having said the above, if you put in the time to go through the above material, you shouldn't have a problem of finding the span and playing around with it.
Good luck :)
Post a Comment for "C# Get Text Which Replaces Text From Span Tags Of An HTML Code"