How can you send multi variables to Director from an ASP Script on which 
the Director file is included?
I am trying to get names from a database and to display them as a list 
in a text field.

Thanks for your help,

Marc


Here is my code so far:

<%@ Language=VBScript %>
<%
    set conn = server.createobject ("adodb.connection")
    conn.open "dns_name", "", ""
    set rsEmps = conn.Execute("select top 5 Surname")
%>

<html><head><title>Welcome</title>

<% Do Until RsEmps.EOF %>

<% Response.Write RSEmps("Surname") %><br>

<% RSEmps.MoveNext loop %>
<% conn.close set conn = nothing %>

</body></html>


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to