Reading Contents of a folder from website
-
Hi, I've to read display the contetns of a folder that is placed on a web server. For instance i've to display the contents of http://localhost on in a list view of my windows application. Please help me out. It would be nice of you. Arslan Ilyas
-
Hi, I've to read display the contetns of a folder that is placed on a web server. For instance i've to display the contents of http://localhost on in a list view of my windows application. Please help me out. It would be nice of you. Arslan Ilyas
Well, you're probably better off using web services for this sort of thing rather than interpreting web pages. If the latter is what you require take a look at HttpWebRequest and HttpWebResponse - this will allow you to simulate the communication a web-browser uses and give you a response stream from the server you can parse.
Regards, Rob Philpott.
-
Well, you're probably better off using web services for this sort of thing rather than interpreting web pages. If the latter is what you require take a look at HttpWebRequest and HttpWebResponse - this will allow you to simulate the communication a web-browser uses and give you a response stream from the server you can parse.
Regards, Rob Philpott.
Thanks alot