Redirecting search results into an ASP.NET page
        Posted  
        
            by Arjun Vasudevan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Arjun Vasudevan
        
        
        
        Published on 2010-06-13T13:10:28Z
        Indexed on 
            2010/06/13
            13:12 UTC
        
        
        Read the original article
        Hit count: 246
        
I've an ASP.NET page with a textbox and a option from user of the following choices: Wikipedia, Google, Dictionary.com, Flickr, Google images.
The user enters a word(s) in the textbox and selects a choice among the following.
Depending on the choice select by the user I wish to return the following.
Wikipedia: Return the content and link to the page corresponding to the topic about the word.
Google: Return the top 10 results of google search for this word.
Flickr: Return a few images atmost 10 images from flickr search
GoogleImage: Return a few images from google image search.
Dictionary: Return the meaning of the word.
How can I do that?
© Stack Overflow or respective owner