Hi,
I have a html file that it isn't syntactically correct, I'm parsing it with HTML Agility Pack (http://htmlagilitypack.codeplex.com).
But if I have a link like
<a href="http://google.com/!/!!!">Google</a>
it's a problem, is there a possible way to detect broken links so that when an error is found (no page is available on that link) the application will store that link in a list and return it?
Same problem on tags, example:
<img hhh="jjj"/>
here the image tag is all wrong, this should be in the 'errors for repair' list too.
Thanks in advance. Jeff