Using VB.net I want to create an windows forms application that passes
credentials to an SSL enabled web site and retrieves the default web page.
Then I want to parse the retrieved web page and then FTP files from the
server.
Parsing the data is not a problem. However, I have no clue on how to start
any of the other processes.
Brock Allen - 10 May 2005 17:04 GMT
You can use HttpWebRequest and HttpWebResponse from the System.Net namespace.
In 2.0 there are also FtpWebRequest and FtpWebResponse classes.
-Brock
DevelopMentor
http://staff.develop.com/ballen
> Using VB.net I want to create an windows forms application that passes
> credentials to an SSL enabled web site and retrieves the default web
[quoted text clipped - 3 lines]
> Parsing the data is not a problem. However, I have no clue on how to
> start any of the other processes.