您的位置:首页 > 运维架构

用多个DropDownList分别来绑定多个年月日

2012-10-16 00:08 246 查看
首先看看效果:

View Code

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class InsusDate : System.Web.UI.UserControl
{
private int? _year;
private int? _month;
private int? _day;

public int? Year
{
get
{
if (ViewState["Year"] != null)
{
return Convert.ToInt32(ViewState["Year"]);
}

if (this.DropDownListYear.SelectedIndex == -1 || string.IsNullOrEmpty(this.DropDownListYear.SelectedItem.Value))
return null;
else
return Convert.ToInt32(this.DropDownListYear.SelectedItem.Value);
}
set
{
ViewState["Year"] = value;
}
}

public int? Month
{
get
{
if (ViewState["Month"] != null)
{
return Convert.ToInt32(ViewState["Month"]);
}
if (this.DropDownListMonth.SelectedIndex == -1 || string.IsNullOrEmpty(this.DropDownListMonth.SelectedItem.Value))
return null;
else
return Convert.ToInt32(this.DropDownListMonth.SelectedItem.Value);

}
set
{
ViewState["Month"] = value;
}
}

public int? Day
{
get
{
if (ViewState["Day"] != null)
{
return Convert.ToInt32(ViewState["Day"]);
}
if (this.DropDownListDay.SelectedIndex == -1 || string.IsNullOrEmpty(this.DropDownListDay.SelectedItem.Value))
return null;
else
return Convert.ToInt32(this.DropDownListDay.SelectedItem.Value);
}
set
{
ViewState["Day"] = value;
}
}

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Data_Binding();
}
}

private void Data_Binding()
{
DropDownlistParse(this.DropDownListYear, i_Year.Select(y => new { value = y }).ToList(), "value", "value");
DropDownlistParse(this.DropDownListMonth, i_Month.Select(m => new { value = m }).ToList(), "value", "value");
this.DropDownListDay.Items.Insert(0, new ListItem(string.Empty, string.Empty));
}

protected void DropDownListYear_SelectedIndexChanged(object sender, EventArgs e)
{
DayDataBinding();
}

protected void DropDownListMonth_SelectedIndexChanged(object sender, EventArgs e)
{
DayDataBinding();
}

private void DayDataBinding()
{
if (this.DropDownListYear.SelectedIndex == -1 || string.IsNullOrEmpty (this.DropDownListYear.SelectedItem.Value)) return;
if (this.DropDownListMonth.SelectedIndex == -1 || string.IsNullOrEmpty(this.DropDownListMonth.SelectedItem.Value)) return;

int y = Convert.ToInt32(this.DropDownListYear.SelectedItem.Value);
int m = Convert.ToInt32(this.DropDownListMonth.SelectedItem.Value);

DropDownlistParse(this.DropDownListDay, i_Day(y, m).Select(d => new { value = d }).ToList(), "value", "value");
}

private void DropDownlistParse(DropDownList ddl, object dataSource, string dataTextField, string dataValueField)
{
ddl.DataSource = dataSource;
ddl.DataTextField = dataTextField;
ddl.DataValueField = dataValueField;
ddl.DataBind();
ddl.Items.Insert(0, new ListItem(string.Empty, string.Empty));
}

List<int> i_Year
{
get
{
List<int> y = new List<int>();
int Ny = DateTime.Now.Year;
for (int i = 1953; i <= Ny; i++)
{
y.Add(i);
}
return y;
}
}

List<int> i_Month
{
get
{
List<int> m = new List<int>();
for (int i = 1; i <= 12; i++)
{
m.Add(i);
}
return m;
}
}

public List<int> i_Day(int year, int month)
{
int days = DateTime.DaysInMonth(year, month);
List<int> d = new List<int>();

for (int i = 1; i <= days; i++)
{
d.Add(i);
}
return d;
}
}

可以把ASCX保存为一个ASCX用户控件,在网页拉进去即可。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: