I'm doing file uploading to a system in our intranet using WebClient.Uploa d().
Following is the code snippet.
byte[] res = myWebClient.Upl oadFile("http://192.168.1.8/Upload/Default.aspx", "POST", "C:\\66.txt ");
This works fine for some systems. but doesn't work for some other systems.
Do I need any changes in Localhost settings?
Following is the code snippet.
byte[] res = myWebClient.Upl oadFile("http://192.168.1.8/Upload/Default.aspx", "POST", "C:\\66.txt ");
This works fine for some systems. but doesn't work for some other systems.
Do I need any changes in Localhost settings?
Comment