Hi,
Guess let me first explain what I'm trying to do...
Let's say you have an embedded script on your page that creates dynamic html, for example:
<script
type
="text/javascript"
src
="
http://someplace.com/1234556.js"
></script
>
Just using the HTTPWebRequest only gets back the HTML that's pre-rendered.
In other words, I actually see that script tag in the response stream.
I'd like to see the source HTML
after it's rendered, be able to see the HTML it
produced .
Is there any code samples out there, or even 3rd Party controls that can accomplish this?
BTW, this is a Windows Application I'm building - so no ASP.NET is involved;
and also I'm not going to use the web browser control, because I have to create an instance of the web request
in parallel - rendering multiple sites of mine at the same time. With the webbrowser control - it must be visible in order to
render. Besides, I'm not making a browser - more of a scraper.
And it would take too long to do stuff in serial like this.
Much Thanks,
Denvas