August 3rd, 2000, 02:11 AM
I want to pass client side value to my business object which generates a recordset based on that value and want to get that recordset value in combo on client side, I am using Advanced data space and Advanced data connector for this but am unable to get the results, Is there any help for this, if yes, please help me with example.
Ash
skraotandra
December 13th, 2000, 03:33 PM
first create an instance of the business object using the createobject method and pass the value to the method in the object.
the method should be expecting a value and should return a record set type.
the method can be written as follows in the business object:
Function SendRecords(searchval)As ADODB.Recordset
your code to get the records from DB.
set SendRecords= RSresults
end function
good luck!