g
Printer Friendly Version

editor  
BellaOnline's ASP Editor
 

Array Subscript Overflow Error

If you're using arrays, it's very likely at one point or another that you'll hit a subscript overflow error.

Arrays are defined when they are created. They can only hold a certain number of members. Say you define an array "states" to have 50 members. You will of course get an error if you try to put in member #51 - or member #101!

Any time you get an overflow error, look back at your original definition. Remember, the first member of an array is item number ZERO. Then the next spot is 1, and then 2, and so on. So if you want your array to have 12 items in it for the 12 months, and you want the array IDs to be 1 through 12, you should dimension your array to have THIRTEEN members. That will give you spots 0 through 12. You simply won't use spot zero.

Careful debugging will make it easy to see where the array overflow is occurring - and to let you dimension your array so it is the appropriate size!

All About Arrays in ASP

ASP Site @ BellaOnline
View This Article in Regular Layout

Content copyright © 2013 by Lisa Shea. All rights reserved.
This content was written by Lisa Shea. If you wish to use this content in any manner, you need written permission. Contact Lisa Shea for details.



| About BellaOnline | Privacy Policy | Advertising | Become an Editor |
Website copyright © 2023 Minerva WebWorks LLC. All rights reserved.


BellaOnline Editor