Click here to Skip to main content
15,918,193 members

Comments by Maziyarkh (Top 2 by date)

Maziyarkh 13-Oct-10 12:50pm View    
I stored the values in a database, but I used several classes and tables and ... so it just complicates the situation and I have to post the whole project. But I understood something, if the ListBox is static with certain items, this code will select all fields on page load:

foreach (ListItem index in StaticListBox.Items)
{
index.Selected = true;
}
which is written in page_load, but if the listbox is dynamic (which is mine), the same code does'nt work.
so the first step and first question is how to select all items of a listbox?
Maziyarkh 13-Oct-10 6:32am View    
I think I know whats the problem, but I dont know the solution! The problem is when you have a dynamic listbox binded to a database, the items cant be selected on page load, I described what I mean in answer3.