用Google實現站內搜尋
阿新 • • 發佈:2019-02-06
如果希望讓網站使用者搜尋自己網站上的內容,可以用Google的搜尋引擎來實現。
把如下Html程式碼新增到你的網站上,並且將Your Domain Name換成你的網站域名,就可以實現站內搜尋。實現的Html程式碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>嵌入Google搜尋引擎</title> </head> <body> <form id="form1" runat="server"> <div> <center> <form method="get" action="http://www.google.com/serach"> <table border="0" cellspacing="0" cellpadding="0" width="100%" style="background-color: #FFFFFF"> <tr> <td> <a href="http://www.google.com/intl/zh-CN/"> <img src="http://www.google.com/logos/Logo_40wht.gif" style="border: 0" alt="Google" align="middle" /> </a> </td> <td> <input type="text" name="q" size="31" maxlength="255" value="" /> <!-- INPUT type=hidden 元素不會顯示在文件裡,所以使用者也無法操作該元素。 該元素通常用來傳輸一些客戶端到伺服器的狀態資訊。雖然此元素不會顯示出來, 但是使用者可以通過檢視 HTML 的原始碼看到該元素屬性的值,所以請注意, 不要用該元素傳遞敏感資訊,比如密碼什麼的。 --> <input type="hidden" name="ie" value="utf-8" /> <input type="hidden" name="oe" value="GB2312" /> <input type="hidden" name="hl" value="zh-CN" /> <input type="submit" name="btnG" value="Google 搜尋" /> <font size="-1"><!-- 實現站內搜尋,將Your Domain Name換成你的網站域名--> <input type="hidden" name="domains" value="Your Domain Name" /><br /> <input type="radio" name="sitesearch" value="" /> 搜尋 WWW <input type="radio" name="sitesearch" value="Your Domain Name" checked="checked" /> 搜尋 Your Domain Name</font> </td> </tr> </table> </form> </center> </div> <br /> <br /> <div> <center> <form action="http://www.baidu.com/baidu" target="_blank"> <table border="0" cellspacing="0" cellpadding="0" width="100%" style="background-color: #FFFFFF"> <tr> <td> <input type="hidden" name="tn" value="baidu" /> <a href="http://www.baidu.com/"> <img src="http://img.baidu.com/img/logo-80px.gif" style="border: 0" alt="Baidu" align="bottom" /> </a> <input type="text" name="word" size="31" /> <input type="submit" name="btnG" value="百度搜索" /> </td> </tr> </table> </form> </center> </div> </form> </body> </html>