hi,
.net 2.0 c# llblgen pro 2
the html looks good, the text and value shows ok for the listbox.
userCollection allUsers = new userCollection();
allUsers.GetMulti(null);
ListBox1.DataSource = allUsers;
ListBox1.DataTextField = "FullName";
ListBox1.DataValueField = "UserId";
ListBox1.DataBind();
this is wat i got in my page load event.
i have a button, when its clicked i m trying to collect Listbox1.SelectedValue and all i get is "".
why cant i get the id number of the selected user?
thanks