asp

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MOTEANE
    New Member
    • Jun 2007
    • 2

    #1

    asp

    I want to store values from the recordset using asp,
  • jsavagedesign
    New Member
    • Jun 2007
    • 17

    #2
    Give this a try. It will create a multi-dimentional array from the record set.

    Code:
        Dim recordSet, CollectedData
       'allcode to populate the recordSet variable ...
        
        CollectedData = recordSet.GetRows();
    
       'Now access the data like this:
       CollectedData[column][row]
    Check this link out for more info:
    Sorry! We can't seem to find the resource you're looking for


    -J

    Comment

    • kestrel
      Recognized Expert Top Contributor
      • Jul 2006
      • 1071

      #3
      Im moving this to the Forum

      Comment

      Working...