wanglizhong
2025-05-05 9b8a7157bb9c401de973a4107f74ff3e723ec156
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>
<!--#include virtual="/inc/function.asp"-->
<%
Send_Phone    = request("phone")
yzma    = request("yzma")
 
if Send_Phone="" Or yzma="" Then
Response.Write "0"
Response.End
end If
 
Send_Text  = "验证码:"&yzma&"【医疗快线】" 
 
 
call Get_SMS(Send_Phone,Send_Text,Send_Remarks)
 
 
Response.Write "1"
%>