绑定月份
Posted 不为失败找借口,只为成功找方法
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绑定月份相关的知识,希望对你有一定的参考价值。
private void GetMonth() { int index = 0; //定义索引 DateTime now = DateTime.Now; string month = now.Month.ToString(); if (Convert.ToInt32(month)<10) { month = "0" + month + "月"; } else { month = month + "月"; } string[] MonthList; MonthList = new string[12]; for (int i = 0; i < 12; i++) { MonthList[i] = (i + 1).ToString("00") + "月"; if (MonthList[i]==month) { index = i;//设置索引 } } ddlMonth.DataSource = MonthList; ddlMonth.SelectedIndex = index;//设置默认值 }
以上是关于绑定月份的主要内容,如果未能解决你的问题,请参考以下文章