-
Hi,
can someone let me know the correct syntax for assigning values ( recordset ) returned from a VB dll to ASP ( VInterDev ). I have the following:
set lrs_OpenCalls = server.CreateObject("ADODB.Recordset")
set lrs_OpenCalls = query_detail.get_Open_Calls(session("CustomerID"))
apart from setting the object twice, this doesn't appear to provide me with all the required properties or methods associated with a normal recordset object. e.g.the getcount() method isn't available.
Any heklp appreciated.
Lenin
-
you don't have all the cursor functionality because your component (Query_detail) is probably returning a read-only, forward only recordset. You need to modify the component, or bypass it altogether