Home  |  Latest News  |  Contribute  |  F.A.Q.  |  Account  |  Scripts | About
Search ASPNut:
 
ASP Reference
Server Variables
ASP Glossary
Related Sites

Free Components

HTML Reference
Web Colors
Entities
CSS Level 1
Encode/Decode
Glossary

Our Sponsors
ASP Nuke CMS
Free Auctions
PHP 5 Script
Funktastic Blog
ULost Directory
Team Task

 

 

 

 

 

 

 

 

 

 

 

 

LBound

The LBound function returns the lower bound for the array parameter. The lower bound is the lowest possible value you can use as an array index.

Most arrays have a lower bound of zero. In the rare event that you have an array that is indexed at anything else other than zero, you may use this function to determine where the array index begins.

Dim aArray
aArray = Array("One","Two","Three")
Response.Write "LBound(aArray) = " & LBound(aArray) & "<BR>"


Currently, there is no way to create an array with a lower bound of anything other than zero. For this reason, this function is pretty much useless. Microsoft left it in the language to provide for future expansion of the language.

Orvado Technologies

ASP Nuke CMS
Free Open Source
Content Manager
HomeFix Boards
Home Remodeling
Message Boards

Contact Us | Contribute | About | Site Map



"I only regret that I have one life to lose for my country." - Nathan Hale

©2007 Orvado Technologies, All Rights Reserved
ASP Nut provides articles and reference documentation for Active Server Page developers.