I have to send a small text file from my asp.net web page C# to a folder of another web server (of course I have credentials of the web server).
Would you please help me to approach this or any information will be appreciated.
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Apr 2, 2013, 12:44 AM
hi,
there are somany differnt approch to transfer file between web server.
1) if both the server are with in same network
* we can just copy /paste file with in network paths.
* else we can transfer file by using socket.
http://www.csharphelp.com/2006/10/client-server-simple-file-sharing-and-file-transfer/
2) we can also create webservice or WCF service to transfer the file
http://www.codeproject.com/Articles/29273/Transfer-files-using-Web-Services
this all are depend on your requirement.
hope this will help you.