Am creating a DLL file
The DLL opens a database up and checks within the database if a certain criteria is met. I would then like it so that outcome stored in a variable is passed to the ASP page and displayed in a list box. A brief look at the function
Open ADO connections
With recordset
while not recordset.eof
It then opens a second database and table based on the primary key of the first connection and checks some details
If APPLE = "1" then
Listvariable = "This is a apple"
end if
.movenext
Wend
Close connections and End Function
Every time it gets the next record I would like it to display Listvariable in a listbox.
Is there any way of doing this in the ASP code so that it retrieves Listvariable
The DLL opens a database up and checks within the database if a certain criteria is met. I would then like it so that outcome stored in a variable is passed to the ASP page and displayed in a list box. A brief look at the function
Open ADO connections
With recordset
while not recordset.eof
It then opens a second database and table based on the primary key of the first connection and checks some details
If APPLE = "1" then
Listvariable = "This is a apple"
end if
.movenext
Wend
Close connections and End Function
Every time it gets the next record I would like it to display Listvariable in a listbox.
Is there any way of doing this in the ASP code so that it retrieves Listvariable