«aql messaging services»    «aql voice services»
 


»Sign Up     »Contact Us  
 
 
       

ASP




Account Login
Lost password?

aql ®
  Award Winning Service
 
aql Telecoms
  Click here to view aql's range of voice fax and Business Voice over IP telephony solutions
 
New Accounts
  Signup for a starter account from only £6+VAT.

If you are a business user, apply here for a free trial account




Example ASP Code

Please feel free to copy this code and use it as you please.

<%

Dim org, dest, msg, time, unix, udh, id

org = Request.QueryString("originator");
dest = Request.QueryString("destination");
msg = Request.QueryString("message");
time = Request.QueryString("time");
unix = Request.QueryString("unix_time");
udh = Request.QueryString("udh");
id = Request.QueryString("id");

Response.Write("Originator: " & org & "<br />");
Response.Write("Destination: " & dest & "<br />");
Response.Write("Message: " & msg & "<br />");
Response.Write("Time: " & time & "<br />");
Response.Write("Unix Time: " & unix & "<br />");
Response.Write("UDH: " & udh & "<br />");
Response.Write("ID: " & id & "<br />");

%>