Ejemplo n.º 1
0
 public static void BindDate(DropDownList ddlStartYear, DropDownList ddlStartMonth, DropDownList ddlEndYear, DropDownList ddlEndMonth)
 {
     ddlStartYear.BindYear();
     ddlStartMonth.BindMonth();
     ddlEndYear.BindYear();
     ddlEndMonth.BindMonth();
 }
Ejemplo n.º 2
0
 public static void BindDate(DropDownList lc1, DropDownList lc2, DropDownList lc3)
 {
     lc1.BindYear(0x7c6, 0x24);
     BindMonth(lc2);
     BindDays(lc3, Convert.ToInt16(lc1.SelectedItem.Value), Convert.ToInt16(lc2.SelectedItem.Value));
 }