Google search code in ASP.NET Master Page - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:01:20Zhttp://stackoverflow.com/feeds/question/307891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307891/google-search-code-in-asp-net-master-page1Google search code in ASP.NET Master PageGuy2008-11-21T04:45:45Z2009-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><form action="http://www.google.com/cse" id="cse-search-box">
<div>
<input type="hidden" name="cx" value="partner-pub-xxxxxxxxxx:u3qsil-l6ut" />
<input type="hidden" name="ie" value="ISO-8859-1" />
<input type="text" name="q" size="31" />
<input type="submit" name="sa" value="Search" />
</div>
</form>
<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
</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#3079112Answer by seanb for Google search code in ASP.NET Master Pageseanb2008-11-21T04:57:24Z2008-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#3079142Answer by FlySwat for Google search code in ASP.NET Master PageFlySwat2008-11-21T04:58:16Z2008-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 <form runat="Server"> tag and you'll be fine.</p>
http://stackoverflow.com/questions/307891/google-search-code-in-asp-net-master-page/307918#3079182Answer by CMS for Google search code in ASP.NET Master PageCMS2008-11-21T05:03:13Z2008-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#3899661Answer by Bryan Denny for Google search code in ASP.NET Master PageBryan Denny2008-12-23T20:18:05Z2008-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>