I have a record set, I want to copy its data to another record set.
Dim rsAttributes,LoggedInUserId,rsAttributes1
Set rsAttributes = Server.CreateObject("ADODB.RecordSet")
Set rsAttributes1 = Server.CreateObject("ADODB.RecordSet")
Set rsAttributes = CALL DB TO GET DATA.
Now How can I copy rsAttributes value/data to rsAttributes1 . I tried with CLONE method, but did not work.