asp ajax類GOOGLE智慧型提示

2021-05-26 11:18:42 字數 897 閱讀 8305

style.css檔案

/* css document */

body

! #search_suggest

.  .suggest_link_over

.. .suggest_link

! .none

index.asp檔案

">

">

search.asp檔案

">

">

<%

key = request.querystring("key")

if (key <> "") then

dim conn,rs,connstr,sqlcmd

set conn=server.createobject("adodb.connection")

connstr="provider=sqloledb;data source=localhost;uid=zbtest;pwd=123456;database=zbtest;"

conn.open connstr

sqlcmd = "select top 10 id from number where id like '" & key & "%'"

set rs=server.createobject("adodb.recordset")

rs.open sqlcmd,conn

while not rs.eof

keyword = keyword & rs(0) & "|"

rs.movenext

wend

response.write(keyword)

rs.close

set rs=nothing

set conn=nothing

end if

%>

Google輔助類軟體

本博文的主要內容有 google輔助類軟體的介紹 重點首推 google軟體精選管理器 1 google輔助類軟體的介紹 2 google工具欄的設定 搜尋 書籤 其他應用 3 picasa 管理軟體的配置 匯入 建立相簿 修正 匯出 瀏覽 4 谷歌拼音輸入法的安裝 設定 5 google桌面的設定...

Google機器學習筆記 4 5 6 分類器

github工程位址 歡迎star,也歡迎到issue區討論 複習與強化概念 關鍵在於舉報新的郵件 feature x,label y,classifier其實就是乙個feature到label的函式 這些不同分類器都可以解決類似的問題 讓演算法從資料中學習到底是什麼 實現乙個k近鄰 k neare...

String類(傳智播客java基礎畢老師的原始碼)

string類適用於描述字串事物。那麼它就提供了多個方法對字串進行操作。常見的操作有哪些?abcd 1,獲取。1.1 字串中的包含的字元數,也就是字串的長度。int length 獲取長度。1.2 根據位置獲取位置上某個字元。char charat int index 1.3 根據字元獲取該字元在字...