In this article, i will examined how to integrate Microsoft Bing Search engine on your site. First, you would have to get APPID from Microsoft site. Here is a link.
In next step, in your project add the following web reference.
http://api.search.live.net/search.wsdl?AppID=YourAppId
Here is code snippets to make a call in c#. 1: LiveSearchService service = new LiveSearchService(); 2: SearchRequest request = new SearchRequest(); 3: 4: request.AppId = "YOUR APPID"; 5: requ...
No comments yet, be the first one to post comment.