📄 getinfo.asp
字号:
<!--#include file="../function/connect.asp"-->
<%
Set objResult = Server.CreateObject("MSXML2.DOMDocument")
objResult.loadXML ("<objXML></objXML>")
'**************************************************************
StrValue=request("ID")
if StrValue<>"" then
for i=1 to len(StrValue)
strsql="select PY_CODE from Dict_Pinyin where CHINESE='" & mid(StrValue,i,1) & "'"
Set objRs = Server.CreateObject("adodb.recordset")
objRs.Open strsql,objConn,1,1
if not objrs.eof then
strcon=strcon & objrs.fields("PY_CODE")
end if
next
end if
'**************************************************************
objResult.selectSingleNode("objXML").text = strcon
Response.ContentType = "text/xml"
objResult.save (Response)
Response.End
Set objSch = Nothing
Set objResult = Nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -