Hi,
I'm doing a screen scrape of a web page, which works with out any problems
What I want to do is replace the contents of tag, I can do this if the tag match exactly but in this page there are allot of blank spaces.
lbltest.Text contains the page being scrapped. The tag is formatted like this
<li class="thisclass">
TheText
</li>
I can't to a simple replace because of all the spaces. So I need to get it to look like this
<li class="thisclass">TheText</li>
Any ideas how I might do this?
Thanks in advance