Click here to Skip to main content
15,886,802 members
Home / Discussions / C#
   

C#

 
Questionremoting over the internet?? Pin
Tridip Bhattacharjee22-Sep-09 3:25
professionalTridip Bhattacharjee22-Sep-09 3:25 
AnswerRe: remoting over the internet?? Pin
Not Active22-Sep-09 4:07
mentorNot Active22-Sep-09 4:07 
AnswerRe: remoting over the internet?? Pin
Dave Kreskowiak22-Sep-09 4:33
mveDave Kreskowiak22-Sep-09 4:33 
AnswerRe: remoting over the internet?? Pin
Xmen Real 22-Sep-09 5:30
professional Xmen Real 22-Sep-09 5:30 
AnswerRe: remoting over the internet?? Pin
Big Daddy Farang22-Sep-09 8:42
Big Daddy Farang22-Sep-09 8:42 
Questiongoogle search engine api using c# Pin
Anil Veeraghattapu 422-Sep-09 2:33
Anil Veeraghattapu 422-Sep-09 2:33 
AnswerRe: google search engine api using c# Pin
Richard MacCutchan22-Sep-09 2:36
mveRichard MacCutchan22-Sep-09 2:36 
AnswerRe: google search engine api using c# [modified] Pin
Patrik.karlin22-Sep-09 2:55
Patrik.karlin22-Sep-09 2:55 
Hej google has an ajax api att http://code.google.com/apis/ajax/playground/

There lots of example for searsh att this site.

If you dont like javascript there's probelby a way to get this with the .net WebClient Class

# Edit : ops from a windows application then
add a reference to System.Net

And write this function

<br />
static string search(string what) {<br />
            var x = new WebClient();<br />
            var q = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=" + what.Replace(" " , "%20");<br />
            var uri = new Uri(q);<br />
            var downloaded = x.DownloadString(q);<br />
            return downloaded;<br />
        }<br />


and you whill get json formated like this
 <br />
{"responseData": {"results":[{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://sv.wikipedia.org/wiki/Patrik","url":"http://sv.wikipedia.org/wiki/Patrik","visibleUrl":"sv.wikipedia.org","cacheUrl":"http://www.google.com/search?q\u003dcache:55ZSvMNvIkIJ:sv.wikipedia.org","title":"\u003cb\u003ePatrik\u003c/b\u003e - Wikipedia","titleNoFormatting":"Patrik - Wikipedia","content":"Mansnamnet \u003cb\u003ePatrik\u003c/b\u003e, Patric eller Patrick är av skotskt ursprung och kom till   Sverige på 1600-talet med invandrande skotska släkter. \u003cb\u003e...\u003c/b\u003e"},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://griskindspatrik.wordpress.com/","url":"http://griskindspatrik.wordpress.com/","visibleUrl":"griskindspatrik.wordpress.com","cacheUrl":"http://www.google.com/search?q\u003dcache:pM9u03q_o30J:griskindspatrik.wordpress.com","title":"\u003cb\u003ePatrik\u003c/b\u003e","titleNoFormatting":"Patrik","content":"Absolut inte hemgjort, för det var den för "vispad" (Veronica) och för   finfördelad (\u003cb\u003ePatrik\u003c/b\u003e). Nu har jag ju inte tillverkat ankrillettes själv (ÄN, \u003cb\u003e...\u003c/b\u003e"},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://www.imdb.com/title/tt1067733/","url":"http://www.imdb.com/title/tt1067733/","visibleUrl":"www.imdb.com","cacheUrl":"http://www.google.com/search?q\u003dcache:OQsxMHBWufkJ:www.imdb.com","title":"\u003cb\u003ePatrik\u003c/b\u003e 1,5 (2008)","titleNoFormatting":"Patrik 1,5 (2008)","content":"Directed by Ella Lemhagen. With Gustaf Skarsgård, Torkel Petersson, Thomas   Ljungman. A Swedish gay couple adopt what they think is a 15-month-old orphan,   \u003cb\u003e...\u003c/b\u003e"},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://www.patrikschumacher.com/","url":"http://www.patrikschumacher.com/","visibleUrl":"www.patrikschumacher.com","cacheUrl":"http://www.google.com/search?q\u003dcache:8_lL08LaBKIJ:www.patrikschumacher.com","title":"\u003cb\u003ePatrik\u003c/b\u003e Schumacher","titleNoFormatting":"Patrik Schumacher","content":"Published as "Smart Work – \u003cb\u003ePatrik\u003c/b\u003e Schumacher on the growing importance of \u003cb\u003e...\u003c/b\u003e   Ralf F. Broekman und Olaf Winkler im Gespräch mit \u003cb\u003ePatrik\u003c/b\u003e Schumacher \u003cb\u003e...\u003c/b\u003e"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"1910000","currentPageIndex":0,"moreResultsUrl":"http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d0\u0026hl\u003dsv\u0026q\u003dpatrik"}}, "responseDetails": null, "responseStatus": 200}<br />


modified on Tuesday, September 22, 2009 9:06 AM

AnswerRe: google search engine api using c# Pin
Aman Bhullar22-Sep-09 3:22
Aman Bhullar22-Sep-09 3:22 
QuestionBind txt Box to database [modified] Pin
Manish7922-Sep-09 2:12
Manish7922-Sep-09 2:12 
AnswerRe: Bind txt Box to database Pin
Henry Minute22-Sep-09 2:26
Henry Minute22-Sep-09 2:26 
GeneralRe: Bind txt Box to database Pin
Manish7922-Sep-09 2:50
Manish7922-Sep-09 2:50 
GeneralRe: Bind txt Box to database Pin
Programm3r22-Sep-09 3:00
Programm3r22-Sep-09 3:00 
GeneralRe: Bind txt Box to database Pin
Manish7922-Sep-09 3:14
Manish7922-Sep-09 3:14 
GeneralRe: Bind txt Box to database Pin
Programm3r22-Sep-09 3:19
Programm3r22-Sep-09 3:19 
GeneralRe: Bind txt Box to database Pin
Keith Barrow22-Sep-09 3:16
professionalKeith Barrow22-Sep-09 3:16 
GeneralRe: Bind txt Box to database Pin
Manish7922-Sep-09 3:23
Manish7922-Sep-09 3:23 
GeneralRe: Bind txt Box to database Pin
Programm3r22-Sep-09 3:31
Programm3r22-Sep-09 3:31 
GeneralRe: Bind txt Box to database Pin
OriginalGriff22-Sep-09 3:32
mveOriginalGriff22-Sep-09 3:32 
GeneralRe: Bind txt Box to database Pin
Manish7922-Sep-09 3:46
Manish7922-Sep-09 3:46 
GeneralRe: Bind txt Box to database Pin
Keith Barrow22-Sep-09 3:50
professionalKeith Barrow22-Sep-09 3:50 
GeneralRe: Bind txt Box to database Pin
OriginalGriff22-Sep-09 3:56
mveOriginalGriff22-Sep-09 3:56 
AnswerRe: Bind txt Box to database Pin
Robert_Pan22-Sep-09 4:13
Robert_Pan22-Sep-09 4:13 
QuestionCustom progressbar doesn't update Pin
teknolog12322-Sep-09 1:56
teknolog12322-Sep-09 1:56 
QuestionRe: Custom progressbar doesn't update Pin
Programm3r22-Sep-09 3:21
Programm3r22-Sep-09 3:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.