Using Auron SMS Component in ASP classic
To use the SMS Component objects in ASP classic make sure the component has been installed on the server.
You can find working examples of how to use the Auron SMS Component in ASP classic on github.
The following code shows how to declare, create and use one of the SMS Component objects:
<html>
<body>
Version:
<script language="vbscript" runat="server">
Set objGsm = CreateObject("AxSms.Gsm") ' Declaration and Creation
' Display version information
Response.Write "Auron SMS Component " & objSmpp.Version
</script>
</body>
</html>