EchoAlertcom
IS-IT--Management
I am getting this error when I run this page. The code is pasted below. I appreciate any help.
Also, can I open the connection and run as many executions as I want or do I have to open and close for each execution?
This is the error:
This is the page:
Sincerely,
Steve
Also, can I open the connection and run as many executions as I want or do I have to open and close for each execution?
This is the error:
Code:
Microsoft OLE DB Provider for SQL Server error '80040e14'
Line 1: Incorrect syntax near '.'.
/sptest.asp, line 16
This is the page:
Code:
<html><head><title>SP Test</title></head>
<body>
<%
conBounceProc = "Provider=SQLOLEDB;Server=0.0.0.0;Database=dbname;UID=uname;PWD=pword"
dim varEAddr
varEAddr = "me@myemail.com"
set connection = server.createobject("adodb.connection")
connection.open conBounceProc 'dsnBounceHandling
connection.Execute "up_Update_SBounce " & varEAddr
%>
</body>
</html>
Sincerely,
Steve