|
 |
access_asp thread: gobal email sender
Message #1 by "John Gonsalves" <j.gonsalves@n...> on Sun, 2 Mar 2003 22:23:42
|
|
%@ Language=VBScript %>
<% Response.Buffer = True %>
<!--#include file="connect.inc"-->
<%
On Error resume Next
Dim objConn
Dim myDSN
myDSN="emotive"
set objConn=Server.CreateObject("adodb.connection")
objConn.open myDSN
%>
what I need to know is how to reteive my email addresses from my query?
do I need an array?
can anyone give me a clue
Thank you.
Message #2 by "Ken Schaefer" <ken@a...> on Mon, 3 Mar 2003 11:16:44 +1100
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "John Gonsalves" <j.gonsalves@n...>
Subject: [access_asp] gobal email sender
: %@ Language=VBScript %>
: <% Response.Buffer = True %>
: <!--#include file="connect.inc"-->
:
:
: <%
: On Error resume Next
: Dim objConn
: Dim myDSN
: myDSN="emotive"
: set objConn=Server.CreateObject("adodb.connection")
: objConn.open myDSN
: %>
:
: what I need to know is how to reteive my email addresses from my query?
:
: do I need an array?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
What query? All I see is some code that opens a connection to a database. I
don't see any query there.
Cheers
Ken
|
|
 |