for(i = 0; i < selProductID.Items.Count; i++)
{
if(selProductID.Items[i].Selected == true)
{
productID.Append(selProductID.Items[i].Value + ",");
}
}
I need to get a comma separated list of the values. Surely there must be a
better way? Before in ASP you could just say Request("selProductID") and you
would get a list of all the values that had been selected.
Cheers,
Sam I Am