不,您无法轻松修改现有日历。但也许在日历上方添加一个表格行就足够了,您可以在其中选择年份。
<table>
<tr>
<td>
<asp:DropDownList id="drpCalMonth" Runat="Server" OnSelectedIndexChanged="Set_Calendar" AutoPostBack="true"></asp:DropDownList>
<asp:DropDownList id="drpCalYear" Runat="Server" OnSelectedIndexChanged="Set_Calendar" AutoPostBack="true"></asp:DropDownList>
</td>
</tr>
<tr>
<td>
<asp:Calendar id="cntCalendar" Runat="Server" Width="100%" />
</td>
</tr>
</table>
Run Code Online (Sandbox Code Playgroud)
以下是填充年份和月份下拉列表的两种方法:
protected void Populate_MonthList()
{
//Add each month to the list
var dtf = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat;
for(int i=1; i<=12; i++)
drpCalMonth.Items.Add(new ListItem(dtf.GetMonthName(i), i.ToString()));
//Make the current month selected item in the list
drpCalMonth.Items.FindByValue(DateTime.Now.Month.ToString()).Selected = true;
}
protected void Populate_YearList()
{
//Year list can be changed by changing the lower and upper
//limits of the For statement
for (int intYear = DateTime.Now.Year - 20; intYear <= DateTime.Now.Year + 20; intYear++)
{
drpCalYear.Items.Add(intYear.ToString());
}
//Make the current year selected item in the list
drpCalYear.Items.FindByValue(DateTime.Now.Year.ToString()).Selected = true;
}
Run Code Online (Sandbox Code Playgroud)
您可以从以下位置初始化列表Page_Load:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Populate_MonthList();
Populate_YearList();
}
}
Run Code Online (Sandbox Code Playgroud)
最后,这是设置 new 的SelectedIndexChanged事件的事件处理程序:DropDownListsDate
protected void Set_Calendar(object Sender, EventArgs e)
{
int year = int.Parse(drpCalYear.SelectedValue);
int month = int.Parse(drpCalMonth.SelectedValue);
cntCalendar.TodaysDate = new DateTime(year, month, 1);
}
Run Code Online (Sandbox Code Playgroud)
[已测试]
灵感来源: https: //web.archive.org/web/20210304123649/https ://www.4guysfromrolla.com/articles/090104-1.aspx (VB)