123456789101112131415161718192021222324 |
- <%
- uid="test"
- pwd="123456"
- mob="此处填写手机号码 "
- msg="你好!今天下午开会!"
- function getHTTPPage(strurl)
- on error resume next
- set http = Server.CreateObject("Microsoft.XMLHTTP")
- http.Open "GET",strurl, false
- http.setRequestHeader "Content-type:", "text/xml;charset=GB2312"
- http.Send
- getHTTPPage=http.ResponseText
- end function
-
- strurl="http://service.winic.org/sys_port/gateway/?id="&uid&"&pwd="&pwd&"&to="&mob&"&content="&msg&"&time="
-
- backinfo=getHTTPPage(strurl)
- %>
|