on my old server this script running perfectly fine..but not now:
msxml3.dll error '800c0005' The system cannot locate the resource specified. /malav
msxml3.dll error '800c0005' The system cannot locate the resource specified. /malav
Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
</head>
<body>
<%
dim mobile_no,code
mobile_no="***"
dim usersms,passsms,sender,sendto,GetConnection,GotothisURL
usersms="*****"
passsms="******"
sender="*********"
sendto=mobile_no
code="*******"
if usersms <> "" And passsms <> "" and len(sendto)=10 then
Set GetConnection = CreateObject("Microsoft.XMLHTTP")
GotothisURL = "http(s)://bulksms.*****.com:8080/WebSMS/SMSAPI.jsp?username="&usersms&"&password="&passsms&"&sendername="&sender&"&mobileno="&sendto&"&message="&code&""
GetConnection.Open "get", GotothisURL, False
GetConnection.Send
response.write getconnection.responseText
else
end if
%>
</body>
</html>