To populate a data into an array from a text file. The text file is the replacement for a database. Not always wud ur back end will b a database!
Author: Baajhan Code: ASP 3.0 & VBScript
Function that sorts an 1D array of number either ascending or descending. This function sorts using the well known double for..next principle. Script gives an overview of passing parameters and especially passing arrays of numbers to a function. Author: Rogier Doekes Code: ASP 3.0 & VBScript
This article explains how to pass the values in an array from one page to another without using Sessions Variables or Application Variables and Forms. Author: Amit Agarwal Code: ASP 3.0 & VBScript
This VBScript subroutine sorts an array of records in place using 1 to n sort key definitions. The sort keys can be defined as offsets into the record or as relative word positions. Code: ASP 3.0 & VBScript
This is a simple but usefull function that is will sort an arrays in an ASP page.
An example array is included in the code and demonstrated as the page loads. Code: ASP 3.0 & VBScript
Steps:
1. Execute the sql
2. Loop through the recordset
3. ReDim the array with the preserve keyword
4. Put RS in array item by item
Author: Jared Stauffer Code: ASP 3.0 & VBScript
If you've used VBScript's arrays before, you're likely aware that you can dynamically resize arrays using the Redim statement. Sometimes this can be a pain, though. For example, imagine that you wanted to read each line of a text file into an array. Author: 4guysfromrolla.com Code: ASP 3.0 & VBScript
In this article, we're going to jump into sorting a two-dimensional array and skip past a lot of the explanation that was presented in the first article. Author: Darren Neimke Code: ASP 3.0 & VBScript
This article demonstrates how to use the VBScript function Filter to selectively pick and choose certain elements out of an array. Author: 4guysfromrolla Code: ASP 3.0 & VBScript