search web

G

Gene

I want to put a search page on my site. Front Page Help directs me to a
"Search Page Template" that is not there. It further states that if the
template is not avaliable I should go to Tools, Page Options, Web Page
Authoring Tools and make sure that Browse-Time Web Components is checked. I
did this and it is checked. I still can't find the template. Can anyone help?
 
D

Dan L

Cut and paste the following to your page using the HTML View for a Google web
search capability:

<!-- Search Google -->
<center>
<FORM method=GET action="http://www.google.com/search">
<input type=hidden name=ie value=UTF-8>
<input type=hidden name=oe value=UTF-8>
<TABLE bgcolor="#FFFFFF"><tr><td>
<A HREF="http://www.google.com/">
<IMG SRC="http://www.google.com/logos/Logo_40wht.gif"
border="0" ALT="Google" align="absmiddle"></A>
<INPUT TYPE=text name=q size=25 maxlength=255 value="">
<INPUT type=submit name=btnG VALUE="Google Search">
</td></tr></TABLE>
</FORM>
</center>
<!-- Search Google -->

Or if you want to include a search that includes your site use:

<!-- SiteSearch Google -->
<FORM method=GET action="http://www.google.com/search">
<input type=hidden name=ie value=UTF-8>
<input type=hidden name=oe value=UTF-8>
<TABLE bgcolor="#000000"><tr><td>
<A HREF="http://www.google.com/"></A>
<!--<IMG SRC="http://www.google.com/logos/Logo_40wht.gif"-->
</td>
<td>
<INPUT TYPE=text name=q size=15 maxlength=255 value="">
<INPUT type=submit name=btnG VALUE="Search">
<font size=-1>
<input type=hidden name=domains value="http://YourSite.com"><br><input
type=radio name=sitesearch value=""> WWW <input type=radio name=sitesearch
value="http://YourSite.com" checked> YourSite.com <br>
</font>
</td></tr></TABLE>
</FORM>
<!-- SiteSearch Google -->

and change "YourSite.com" to your actual domain name.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top