What I basically want to do is take some HTML and display it in a way that when you mouse over any element, the application can parse the HTML I'm pointing to. I want to do this with C#/.NET Framework.
Using IE is fine in my project and I'll want to basically edit the HTML so that when i hover over a table for instance, the table's border with become bold and a different color.
edit what I'm actually doing is downloading html from the internet and then processing it. I basically want a tool that can look at a web page, and then when i mouse over different elements, my application can parse the corresponding html
What's the best/easiest way to do this?