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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top