vote up 1 vote down star

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

flag

4 Answers

vote up 1 vote down

You'll need to remove the form tag and use javascript send the query. Have a look at http://my6solutions.com/post/2009/04/19/Fixing-Google-Custom-Search-nested-form-tags-in-asp-net-pages.aspx

I have included the before and after code as well. So you can see what I've done to integrate it with blogengine .net.

link|flag
Thank you, it is working. – Sharique May 18 at 10:12
That doeesn't seem to be a good solution. What about users that have javascript disabled? – Shea Daniels Oct 12 at 20:47
If you can separate the 2 form tags then all is good. Otherwise .... Actually, I wonder what's the percentage of people who disables javascript these days ... – seanlinmt Oct 13 at 9:25
I think that's not really a worry these days stackoverflow.com/questions/121108/… – seanlinmt Oct 13 at 9:27
vote up 0 vote down

You could use Javascript:

<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 );" />
link|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

You can have multiple form tags on an ASP.NET page. The limitation is on server-side (runat="server") form tags.

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:

<body>
<form action="http://www.google.com/cse" id="cse-search-box"> ... </form>
<form runat="server" id="aspNetform"> ... </form>
<body>
link|flag

Your Answer

Get an OpenID
or

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