


An operator logo appears permanently on the screen of a mobile
phone. It replaces the default picture/text of your network
provider. aspsms supports the realtime import and conversion
of bitmaps from the harddisk of the webserver or from any URL.
Detailed information about MCC and MNC numbers you will find on the
GSM World Website.
First example:
The operator logo (racingcar.bmp) will be loaded
from the local disk of the webserver or any
computer where the aspsms component is installed.
<html>
<body>
<%
'---------------------------------------------------------------
' aspsms.com(ponent) (c) 2001 by VADIAN.NET AG
'---------------------------------------------------------------
' send specific operator logo from the local hard disk
' MCC & MNC example for Singapore Telecom GSM 900
'---------------------------------------------------------------
Set SMS = Server.CreateObject("ASPSMS.Booster")
SMS.Userkey = "I3QHMYKEY6E"
SMS.Password = "mypassword"
SMS.Originator = "0041763255533"
SMS.BinaryFileLocation = "c:/files/bitmaps/racingcar.bmp"
SMS.MCC = 525
SMS.MNC = 1
SMS.AddRecipient "0016598478615"
SMS.SendLogo
lResult = SMS.ErrorCode
SMS.DeleteAllRecipients
Set SMS = Nothing
%>
done.
</body>
</html>