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,
Check with below code.
string checkedItems = string.Join(",", RadComboBox1.CheckedItems.Select(x => x.Value).ToArray())
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.