tags:

views:

11

answers:

1

I have a WPF client application. Through which I want to upload a file to my web server.

How to do that?

+1  A: 

WebClient.UploadFile is the way to go in your case. Sample code is provided in the MSDN article (both for C# and VB.NET).

Dennis Delimarsky

related questions