Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Clearing an array

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Is it necesary to clear an array, like you would clear a record set by using

rs.close
set rs = nothing

And if so, how does one do that?
thanks.
 
Unless you have made the array a global variable, it will clear when the subroutine or function finishes. Therefore, you don't need to explicitly clear the array.

All global arrays will clear when the asp page finishes executing.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top