vote up 1 vote down star

I'm trying to put the following Google generated search box code into a Master page on a site:

<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>

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...

flag

73% accept rate

4 Answers

vote up 1 vote down check

Alternatively, you could use javascript: http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx

link|flag
vote up 2 vote down

Do you by any chance have a "form runat=server" wrapping around where your user control is being placed?
That would cause a problem.

link|flag
vote up 2 vote down

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.

link|flag
vote up 2 vote down

This article can help you:

Using Google Co-op's Custom Search Engine on ASP .NET

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.