Search a website and google
-
hi everyone in many sites, their is two options for doing search: search the website or google search. i know that the first one search all the pages in this site only and the second make a search like in google. -i think the first one can be done in .net, can anyone help me for doing a search in all the pages of a website? -how can i implement the second search (google search) should i subscribe with google?? or something else. thanks
-
hi everyone in many sites, their is two options for doing search: search the website or google search. i know that the first one search all the pages in this site only and the second make a search like in google. -i think the first one can be done in .net, can anyone help me for doing a search in all the pages of a website? -how can i implement the second search (google search) should i subscribe with google?? or something else. thanks
I have a script setup on my page at home to run searches off google. its basically just a redirection. you can see it at http://www.gizmocoder.com/Home/template.aspx[^] To make it work, its basically something like this: 'For Web Response.Redirect("http://www.google.ca/search?q=" & TextBox1.Text) 'For Images Response.Redirect("http://www.google.ca/images?q=" & TextBox1.Text) and so on.. its quite simple Jon G www.Gizmocoder.com
-
hi everyone in many sites, their is two options for doing search: search the website or google search. i know that the first one search all the pages in this site only and the second make a search like in google. -i think the first one can be done in .net, can anyone help me for doing a search in all the pages of a website? -how can i implement the second search (google search) should i subscribe with google?? or something else. thanks
For site searches, I thought the only "real" way of doing it is by having a Database backend to your site. You can then search the records of your DB for any relevant fields. Other than that, doing it through text files must be extremely innefficient, and cumbersome. If you are really interested in a site-search, you may want to setup a database setup for your site. Jon G www.Gizmocoder.com
-
I have a script setup on my page at home to run searches off google. its basically just a redirection. you can see it at http://www.gizmocoder.com/Home/template.aspx[^] To make it work, its basically something like this: 'For Web Response.Redirect("http://www.google.ca/search?q=" & TextBox1.Text) 'For Images Response.Redirect("http://www.google.ca/images?q=" & TextBox1.Text) and so on.. its quite simple Jon G www.Gizmocoder.com
How would i go about it if i wanted to display the results within my own page .. so i could manipulate them further. Response.Redirect will pass control to google.com zimcoder What Democracy?? Jesus Christ is King and if you do not like... well you can go to hell!
-
How would i go about it if i wanted to display the results within my own page .. so i could manipulate them further. Response.Redirect will pass control to google.com zimcoder What Democracy?? Jesus Christ is King and if you do not like... well you can go to hell!
This is different then, you will need to get the google APIs which can be found at http://www.google.com/apis/ Google will allow you to perform up to 1000 searches a month. This service is free of charge. This is the only way you can return searches onto your own page. Jon G www.Gizmocoder.com