Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
3.40/5 (4 votes)
See more:
hi friends,
how to search our asp.net text box value in google search?
If we type some string in that textbox and search that string in google.

Thanks & Regards
Hari
Posted
Comments
Sergey Alexandrovich Kryukov 14-Aug-12 12:39pm    
Very unclear, but I can guess what you want. I suspect you don't need to find a text in a search box; you need to read a text from a text box and find this text in Google data, not on your page, right? What's the problem then?
--SA
Sergey Alexandrovich Kryukov 14-Aug-12 12:42pm    
Don't you think that to know how to work with Google, you should ask, not too surprising... Google?
--SA

XML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body><form name="mysearch" action="http://www.google.com/search" method="get" onSubmit="sitesearch(this)">

<input id="hiddenquery" type="hidden" name="q" />
<input name="qfront" type="text" style="width: 200px" value="navigator object" /> <input type="submit" value="Search" /><br />
<div style="font: bold 11px Verdana;">Google:<input name="se" type="radio" checked>  Yahoo:<input name="se" type="radio">  MSN:<input name="se" type="radio">
</div>

<script type="text/javascript">



//Enter domain of site to search.
var domainroot="www.codeproject.com/"

var searchaction=[ //form action for the 3 search engines
"http://www.google.com/search",
"http://search.yahoo.com/search",
"http://search.msn.com/results.aspx"
]

var queryfieldname=["q","p","q"] //name of hidden query form for the 3 search engines

function switchaction(cur, index){
cur.form.action=searchaction[index]
document.getElementById("hiddenquery").name=queryfieldname[index]
}

function sitesearch(curobj){
for (i=0; i< document.mysearch.se.length; i++){ //loop through radio to see which is checked
if (document.mysearch.se[i].checked==true)
switchaction(document.mysearch.se[i], i)
}
document.getElementById("hiddenquery").value="site:"+domainroot+" "+curobj.qfront.value
}


</script>

</p>

</form>

<p style="font: normal 11px Arial">Search all in one<br />
<a href="http://www.facebook.com/premprakashparihar">prem prakash</a></p>
</body>
</html>
 
Share this answer
 
Please see my comment to the question. If this is what you need, it is fully described here:
https://developers.google.com/custom-search/v1/getting_started[^].

—SA
 
Share this answer
 

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