?? getvalues.asp
字號(hào):
<!--#include file="../inc/NoCatch.asp"-->
<!--#include file="../inc/conn.asp"-->
<!--#include file="../inc/Const.asp"-->
<%
smod=request("smod")'查詢模式
zd=request("zd")'查詢字段
key=request("key")'查詢值
set rs=Server.CreateObject("ADODB.RecordSet")
strsql="SELECT TOP 10 * FROM (SELECT DISTINCT "&zd&" FROM vioa"&smod&" WHERE "&zd&" LIKE '"&key&"%') tab ORDER BY LEN("&zd&")"
rs.open strsql,oConn,1,1
while not rs.eof
response.write "|"&HtmlOut(rs(0))
rs.movenext
wend
response.write "|"
rs.close:set rs=nothing
set oConn=nothing
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -