Is there a simple way, using C#, to open an arbitrary URL, read in the text, and reduce it down to that which would be displayed in a web page? I suppose I could get the < body > content, and iterate char by char over that content, ripping out anything that is in betwee < and >(inclusive). I looked briefly at HTML Agiligy Pack, and that may be a solution, but it seemed very heavy for what I am trying to do.
Again, all I want is a string of text that represents the text that would be displayed on screen for an arbitrary URL.