Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In Google we write the keyword and search result display. In my application i want to fetch that url that is shown in google. I hv ceated a textbox and a button.my code is
C#
public void SkanLink(string url)
       {
           WebClient client = new WebClient();
           string html = client.DownloadString(url);

           // Scan links on this page
           HtmlTag tag;

           HtmlParser.HtmlParser parse = new HtmlParser.HtmlParser(html);
           fs = new FileStream("D:\\URL.txt", FileMode.Create, FileAccess.Write);
           sw = new StreamWriter(fs);
           while (parse.ParseNext("a", out tag))
           {


               if (tag.Attributes.TryGetValue("href", out value))
               {

                   sw.WriteLine(value);

               }


           }
           sw.Close();
          MessageBox.Show("File Created in D:\\URL.txt");

       }

as we typed the hello in google and click search. Now copy the url that shows in browser and past it in text box then click.



My 1st Question is it posible to fetch url without using googleapi?
If yes plz provide me some link.
Posted
Comments
Rickin Kane 5-Dec-12 5:51am    
God of Mercy !! Save me !! take me away !!!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900