Hi,
I have some HTML
<body>
<p id="errorMessage">System.Web.HttpException: Path '/DynamicData/DimOrganisations/List.aspx' was not found.</p>
<p>Generated: Tue, 29 Sep 2009 18:04:18 GMT</p>
I want to search through my HTMl for the tag
p id="errorMessage"
And then take out the data with the html. So run something to look for the tag and get the data out between the start and end tag. So by the end I get:
System.Web.HttpException: Path '/DynamicData/DimOrganisations/List.aspx' was not found.
Can anyone help. I am using C# 2008
Thanks
Marc