ASP SMS messaging is one of the services we offer. Here we'll show you how to use our SMS gateway in ASP. Take the SMS ASP script code below to send SMS via Developers' Central.
< % Set the values same as you use in your saakshisoftware.com account
username = "user"
pwd ="password"
'Set the mobile number on which you want to send SMS
mobileno = "919509247017"
'Your Message
smsg = "Test SMS from saakshi software"
' You approved sender id
senderid = "WebSMS"
channel="promo"
msg="testmsg"
routeId="15"
Dim objXmlHttpMain , sURL
sURL="http://dnd.saakshisoftware.com/api/mt/SendSMS?user="&username&"&password="&&"&senderid="&senderid&"&channel="&channel&"&DCS=0&flashsms=0&number="&mobileno&"&text="&msg&"&route="&routeId&"
Set objXmlHttpMain = Server.CreateObject("Msxml2.ServerXMLHTTP")
on error resume next
objXmlHttpMain.open "GET",sURL, False
objXmlHttpMain.setRequestHeader "Content-Type", "text/urlencoded"
objXmlHttpMain.send
'Store response
response.Write (objXmlHttpMain.responseText)
% >