如何在服务器端接收文件?

时间:2013-04-24 19:11:42

标签: c# asp.net http file-upload

我在本地exe中有一个这样的代码,用于在某个URL上传文件:

    private static void SaveTToWeb()
    {
        try {
            WebClient client = new WebClient();
            client.Credentials = CredentialCache.DefaultCredentials;
            client.UploadFile("www.something.com/uploadreceiver.aspx", "POST", "text.txt");
            client.Dispose();
            myFile = null;
            urlForUpload = null;
        }
        catch (Exception err) { Console.write("error: " + err.Message(); }
    }

我的问题是,在服务器端“uploadreceiver.aspx”页面,我应该用什么代码来实际接收文件?谢谢!

1 个答案:

答案 0 :(得分:1)

CSASPNETRemoteUploadAndDownload示例显示如何在ASP.NET应用程序中将文件上载到远程服务器并从中下载文件。

您可以下载示例代码或在此处阅读更多内容http://code.msdn.microsoft.com/CSASPNETRemoteUploadAndDown-a80b7cb5