Hi,
I need to carry out a task that is to get some html out from a webpage. Within the webpage there are comments and i need to get the html out from within the comments. I hope the example below can help. I need it to be done in c#.
<!--get html from here-->
<div><p>some text in a tag</p></div>
<!--get html from here-->
I want it to return
<div><p>some text in a tag</p></div>
How would I do this??