ASKER
string comboBoxValue="" ;
string[] selectedItemsText = ddTo.Text.ToString().Split(";");
foreach (string text in selectedItemsText)
{
RadComboBoxItem item = ddTo.FindItemByText(text) as RadComboBoxItem;
if (item != null)
{
comboBoxValue = comboBoxValue + ((comboBoxValue == "") ? "" : ",") + item.Value;
}
}
ASKER
ASKER
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
Open in new window