【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-05-05 8a7dab004bc3eca7808d0cc196a329464402bbc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>
<!--#include virtual="/inc/chkadmin.gds"-->
<!--#include virtual="/inc/function.gds"-->
<%
PaidMoneyID=trim(Request("PaidMoneyID"))
 
PaidMoney_AP_Check=""
Set rs = Server.CreateObject("ADODB.Recordset")
sql="select * from PaidMoney where id="&PaidMoneyID
rs.open Sql,objConn,1,1
If not rs.Eof Then
    PaidMoney_AP_Check=rs("PaidMoney_AP_Check")
End If
 
 
if PaidMoneyID<>"" And PaidMoney_AP_Check<>"" then
    webJson="{""result"":"&PaidMoney_AP_Check&"}"
else
    webJson="{""result"":2}"
end if
 
Response.Write webJson
Response.End
%>