SMS API: ASP Code |
|
OverviewThe following ASP function communicates with our server, makes an HTTP request and then returns our response. To use this function:
MSXML2
<%
Set api = Server.CreateObject("MSXML2.ServerXMLHTTP")
%>
Public Function tm4b(url, request_data) api.open "POST", url, False api.setRequestHeader "Content-Type","application/x-www-form-urlencoded" api.send request_data tm4b = api.responseText Set api = nothing End Function |
|