tags:

views:

50

answers:

2

Hi all

My previous question is here "how can i read content generated via ajax using webclient"

I need to only download html text content, i don't need any picture and other streaming data.

How to set up System.Windows.Forms.Webbrowser to text browser?

is it possible?

regard

ebattulga

A: 

Try using System.Net.WebClient.

Joel Coehoorn
look my previous question http://stackoverflow.com/questions/1368350/how-can-i-read-content-generated-via-ajax-using-webclient
ebattulga
A: 

AJAX requires a javascript engine to run it - using a simple WebRequest etc. will ontly return the HTML and the Javascript definition, then functions won't actually run.

ck