Best way to implement Google Custom Search on an aspx page - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:15:13Z http://stackoverflow.com/feeds/question/75139 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page 1 Best way to implement Google Custom Search on an aspx page xgene 2008-09-16T18:01:43Z 2009-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#75234 2 Answer by Chris Pebble for Best way to implement Google Custom Search on an aspx page Chris Pebble 2008-09-16T18:08:36Z 2008-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>&lt;body&gt; &lt;form action="http://www.google.com/cse" id="cse-search-box"&gt; ... &lt;/form&gt; &lt;form runat="server" id="aspNetform"&gt; ... &lt;/form&gt; &lt;body&gt; </code></pre> http://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page/75288#75288 0 Answer by Eric Longman for Best way to implement Google Custom Search on an aspx page Eric Longman 2008-09-16T18:13:08Z 2008-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#75380 0 Answer by Timothy Lee Russell for Best way to implement Google Custom Search on an aspx page Timothy Lee Russell 2008-09-16T18:21:21Z 2008-09-16T18:21:21Z <p>You could use Javascript:</p> <pre><code>&lt;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 ); " /&gt;&lt;input name="" type="submit" class="searchButton" value="go" onclick="window.open('http://www.google.com/search?q=' + getElementById('Query').value );" /&gt; </code></pre> http://stackoverflow.com/questions/75139/best-way-to-implement-google-custom-search-on-an-aspx-page/767329#767329 1 Answer by seanlinmt for Best way to implement Google Custom Search on an aspx page seanlinmt 2009-04-20T08:05:04Z 2009-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>