非常に単純なドロップダウンボックスを作成しました。
<asp:DropDownList ID="MonthDropDown" runat="server" AutoPostBack="True">
</asp:DropDownList>
コードビハインド:
MonthDropDown.DataSource = Enumerable.Range(1, 12);
MonthDropDown.SelectedIndex = DateTime.Now.Month;
MonthDropDown.DataBind();
MonthDropDown
(私のドロップダウンボックス)に月の数値の代わりに月の名前を表示させる方法はありますか?私はそれが次のようなものかもしれないと思っています
DateTimeFormatInfo.CurrentInfo.GetMonthName(MonthDropDown.SelectedIndex)?