I'm returning the recordset from a component. Data is retrieved and writes to the page fine except when the sort method is called. Here's my code abbreviated:
Dim objCalls, objRS
Set objCalls Server.CreateObject("helpdesk.Calls"
Set objRS = Server.CreateObject("ADODB.Recordset"
objCalls.OpenCalls boolOpen, strSort, objRS, date_start, date_end
If blah, blah
objRS.Sort = "mystring"
End if
I think I tried to set that property in the asp page earlier, but it didn't work. It did work when I set the property in the component that returns the recordset.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.