いくつかのアイテムがあるコンボボックスのある ASP.NET ページがあります。次のようになります。
<telerik:RadComboBox runat="server" ID="cboExportToExcelChoice" EnableViewState="True" Width="100%" AutoPostBack="True">
<Items>
<telerik:RadComboBoxItem Text="Selected records" Value="Selected records" />
<telerik:RadComboBoxItem Text="All records" Value="All records" />
</Items>
</telerik:RadComboBox>
ご覧のとおり、テキストと値の文字列はハードコードされています。ハードコードされないように文字列をどこに置くことができますか?