Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Getting the number of items in a listbox
Message
General information
Forum:
ASP.NET
Category:
Web forms
Miscellaneous
Thread ID:
00925359
Message ID:
00925389
Views:
13
This message has been marked as the solution to the initial question of the thread.
>How do I get the number of items in a listbox?
I've tried the following JavaScript but I'm really just shooting in the dark...


Richard,

This is off of the top of my head, but I think that is what you are looking for.
function GetListCount()
{
 var oListBox = document.getElementById("ListBoxReminderTimes");
 return oListBox.options.length;
}
Hope that helps...
Previous
Reply
Map
View

Click here to load this message in the networking platform