Google search code in ASP.NET Master Page - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:01:20Z http://stackoverflow.com/feeds/question/307891 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/307891/google-search-code-in-asp-net-master-page 1 Google search code in ASP.NET Master Page Guy 2008-11-21T04:45:45Z 2009-07-01T12:08:00Z <p>I'm trying to put the following Google generated search box code into a Master page on a site:</p> <pre><code>&lt;form action="http://www.google.com/cse" id="cse-search-box"&gt; &lt;div&gt; &lt;input type="hidden" name="cx" value="partner-pub-xxxxxxxxxx:u3qsil-l6ut" /&gt; &lt;input type="hidden" name="ie" value="ISO-8859-1" /&gt; &lt;input type="text" name="q" size="31" /&gt; &lt;input type="submit" name="sa" value="Search" /&gt; &lt;/div&gt; &lt;/form&gt; &lt;script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;amp;lang=en"&gt;&lt;/script&gt; </code></pre> <p>The problem, I believe, is something to do with the form tags. I've tried putting this code inside a user control and embedding that in the master page but no luck yet... </p> http://stackoverflow.com/questions/307891/google-search-code-in-asp-net-master-page/307911#307911 2 Answer by seanb for Google search code in ASP.NET Master Page seanb 2008-11-21T04:57:24Z 2008-11-21T04:57:24Z <p>Do you by any chance have a "form runat=server" wrapping around where your user control is being placed?<br /> That would cause a problem. </p> http://stackoverflow.com/questions/307891/google-search-code-in-asp-net-master-page/307914#307914 2 Answer by FlySwat for Google search code in ASP.NET Master Page FlySwat 2008-11-21T04:58:16Z 2008-11-21T04:58:16Z <p>ASP.NET likes to enclose the entire page with a Form tag, and you can't nest form tags...So move it outside of the &lt;form runat="Server"&gt; tag and you'll be fine.</p> http://stackoverflow.com/questions/307891/google-search-code-in-asp-net-master-page/307918#307918 2 Answer by CMS for Google search code in ASP.NET Master Page CMS 2008-11-21T05:03:13Z 2008-11-21T05:03:13Z <p>This article can help you:</p> <p><a href="http://codeproject.com/KB/aspnet/CustomSearchEngine.aspx" rel="nofollow">Using Google Co-op's Custom Search Engine on ASP .NET</a></p> http://stackoverflow.com/questions/307891/google-search-code-in-asp-net-master-page/389966#389966 1 Answer by Bryan Denny for Google search code in ASP.NET Master Page Bryan Denny 2008-12-23T20:18:05Z 2008-12-23T20:18:05Z <p>Alternatively, you could use javascript: <a href="http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx" rel="nofollow">http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx</a></p>