tags:

views:

297

answers:

2

How do I upload and download files from and to Mainframe dataset using VB.net

I have all the FTP details to the mainframe dataset.

A: 

You should be able to use WebRequest - see this post.

Vinay Sajip
+1  A: 

Where I work we found that you can use the FtpWebRequest class in the System.Net namespace. It's pretty straightforward in it's usage.

BBlake