Best way to implement Google Custom Search on an aspx page - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T21:15:13Zhttp://stackoverflow.com/feeds/question/75139http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page1Best way to implement Google Custom Search on an aspx pagexgene2008-09-16T18:01:43Z2009-05-14T11:59:31Z
<p>Google custom search code is provided as a form tag. However, Asp.net only allows a single form tag on a page. What is the best way to implement their code so you can include it on an aspx page (say as part of a Masterpage or navigation element). </p>
http://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page/75234#752342Answer by Chris Pebble for Best way to implement Google Custom Search on an aspx pageChris Pebble2008-09-16T18:08:36Z2008-09-16T18:18:55Z<p>You can have multiple form tags on an ASP.NET page. The limitation is on server-side (runat="server") form tags. </p>
<p>You can implement two form tags (or more) as long as only one has the runat="server" attribute and one is not contained in the other. Example:</p>
<pre><code><body>
<form action="http://www.google.com/cse" id="cse-search-box"> ... </form>
<form runat="server" id="aspNetform"> ... </form>
<body>
</code></pre>
http://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page/75288#752880Answer by Eric Longman for Best way to implement Google Custom Search on an aspx pageEric Longman2008-09-16T18:13:08Z2008-09-16T18:13:08Z<p>You may be able to have multiple form tags, but note that they cannot be nested. You'll run into all kinds of weirdness in that scenario (e.g., I've seen cases where the opening tag for the nested form apparently gets ignored and then its closing tag winds up closing the "parent" form out). </p>
http://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page/75380#753800Answer by Timothy Lee Russell for Best way to implement Google Custom Search on an aspx pageTimothy Lee Russell2008-09-16T18:21:21Z2008-09-16T18:21:21Z<p>You could use Javascript:</p>
<pre><code><input name="Query" type="text" class="searchField" id="Query" value="Search" size="15" onfocus="if(this.value == 'Search') { this.value = ''; }" onblur="if(this.value == '') { this.value = 'Search'; }" onkeydown="var event = event || window.event; var key = event.which || event.keyCode; if(key==13) window.open('http://www.google.com/search?q=' + getElementById('Query').value ); " /><input name="" type="submit" class="searchButton" value="go" onclick="window.open('http://www.google.com/search?q=' + getElementById('Query').value );" />
</code></pre>
http://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page/767329#7673291Answer by seanlinmt for Best way to implement Google Custom Search on an aspx pageseanlinmt2009-04-20T08:05:04Z2009-04-20T08:05:04Z<p>You'll need to remove the form tag and use javascript send the query. Have a look at
<a href="http://my6solutions.com/post/2009/04/19/Fixing-Google-Custom-Search-nested-form-tags-in-asp-net-pages.aspx" rel="nofollow">http://my6solutions.com/post/2009/04/19/Fixing-Google-Custom-Search-nested-form-tags-in-asp-net-pages.aspx</a></p>
<p>I have included the before and after code as well. So you can see what I've done to integrate it with blogengine .net.</p>