file transfer in asp.net web site
I want to transfer files between any 2 active users on my website and have no idea how to go about it....can it be done through sockets???? i know this would be very hard to do since there has to be a connection between the reciever and the sender for data to be sent...and browsers do have privileges that window开发者_如何学JAVAs applications have.
i am coding in vb.net....
what would be a better way to do it? any ideas or something which would point me in the right direction
thanks to all
Have one person upload the file to the server, and then have the other one download it. It would be the simplest solution to get working. After that you can start working on making it possible to start downloading the file, as the other person is uploading it.
Doing this in a web site without installing software on user's computer is luckily impossible. You could instead offer the first user to upload the file to your site where the second user can download it.
精彩评论