Author: fmarie | Posted on: 9/21/2010 11:50:48 AM | Views : 789

I have written the following code that successful ftps a file to the proper location as long as the file exists on the server itself....
However, I need the code to pull the file contents from the client computer, not the server. 
Here is the code:
/// <summary> /// /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void btnSubmit_Click(object sender, EventArgs e) { CustomValidator1.Validate(); if (Page.IsValid) { try { FtpWebRequest ftpr = (FtpWebRequest)FtpWebRequest.Create(@"ftp://" + ConfigurationManager.AppSettings["remoteHost"] + "/" + ...

Go to the complete details ...