Fetch Data from a Site
-
Hi i want to fetch data from a website that which has 1000's of pages and put it in a excel file. how should i go about doing it?
ivix4u wrote:
how should i go about doing it?
Well, I would start off by defining my requirements and then moving onto producing a fairly detailed breakdown. At this stage, I'd feel ready to fire up Visual Studio and start off a new project. From there on, it's just code.
Deja View - the feeling that you've seen this post before.
-
ivix4u wrote:
how should i go about doing it?
Well, I would start off by defining my requirements and then moving onto producing a fairly detailed breakdown. At this stage, I'd feel ready to fire up Visual Studio and start off a new project. From there on, it's just code.
Deja View - the feeling that you've seen this post before.
-
Hi i want to fetch data from a website that which has 1000's of pages and put it in a excel file. how should i go about doing it?
Use the WebRequest and HttpWebRequest classes in System.Net. This page gives a very clear example of using these classes to fetch an image from a website: http://www.dreamincode.net/code/snippet2555.htm[^]