Is there a way to feed or stream our content to another site
We have a free, oral health information site called ToothIQ.com. All of our content is copyrighted (I know, big deal) and took years to produce- there are over 2000 pages of peer-reviewed content and over 70 animations. We have been approached by a company that wants to use our content on their site. We told them that the only way we would be willing to do that was if it remained ToothIQ branded - in other words, they could not take our content and claim it as their own. They were fine with that and now the for the question:
Is there a way to feed or stream our content to their site? Since they are a specialty site and we are a general site, they will only want certain parts of what we have.
TrinityPosted Oct 11, 2009, 3:50 PM
System.Net.WebClient client = new System.Net.WebClient();
client.UploadFile(adress,filename);
you can download files from distant locations
client.DownloadFile(adress,filename);
you can do this asynchronously to by using uploadfileAsync and downloadfileAsync of the same class