basically what i am doing is building a c# app which allows users to open up html files and in between the certain tags find the contents.
So it has to:
- read start tag, example: <object>
- read stop tag, example: </object>
- take text which is in between the two tags and place it in a
text area.
any ideas???