Hi,
I am writing a C#
asp.net application.
How can i post files to a
web page? Can you please give an example?
The user can choose up to 3 files (using "Browse") and press a "Load" button.
I am trying to do that using:
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(destServerUrl);
But, the files that arrive to my destination server are empty. When i try to get "context.Request.Files.Count" in the destination server i get 0.
How do i do that?
Thanks,
Dana