


This message appears directly on the screen of the mobile phone.
There is no need to go through the menues of the phone.
Such a message isn't saved directly on the mobile phone.
The recipient has to choose SAVE on his menue otherwise
the message disappears from the screen.
<html>
<body>
<%
'------------------------------------------------------------
' aspsms.com(ponent) (c) 2001 by VADIAN.NET AG
'------------------------------------------------------------
' flashing SMS example
'----------------------------------------------------
' The message appears directly on the screen
' of the mobile phone
'----------------------------------------------------
Set SMS = Server.CreateObject("ASPSMS.Booster")
SMS.Userkey = "I3QHMYKEY6E"
SMS.Password = "mypassword"
SMS.Originator = "0041763255533"
SMS.MessageData = "hello dad, call me right now! Cathy"
SMS.FlashingSMS = True
SMS.AddRecipient "0044734255533"
SMS.SendTextSMS
lResult = SMS.ErrorCode
SMS.DeleteAllRecipients
Set SMS = Nothing
%>
done.
</body>
</html>