I want to select multiple value from radcombobox and then split those value into comma seperated string to save in database.
Please give me code.
Hi nishud3040,
string checkedItems = string.Join(",", RadComboBox1.CheckedItems.Select(x => x.Value).ToArray())
Did the following code solve your problem?
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.