Manipulate HTML string as DOM

  • Thread starter Thread starter Mike Gleason jr Couturier
  • Start date Start date
M

Mike Gleason jr Couturier

(.NET 2.0, C#, VS 2005)

Hi,

I have a string representing a web page file.

I want to convert the string into an object to navigate through it's
elements.

I tried XmlDocument but I get a parsing error on the string...

Thanks
 
you need an HtmlParser. .net does not supply one other than hosting IE (not
recommended for an asp.net site).

google HtmlParser for the toolkit of your choice. (most are in java though)


-- bruce (sqlwork.com)
 
Mike Gleason jr Couturier said:
(.NET 2.0, C#, VS 2005)

Hi,

I have a string representing a web page file.

I want to convert the string into an object to navigate through it's
elements.

I tried XmlDocument but I get a parsing error on the string...

Thanks

Thanks a lot guys!

Mike
 
Back
Top