Esempio n. 1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        int            year   = Convert.ToInt16(Request["year"]);
        int            month  = Convert.ToInt16(Request["month"]);
        List <CheckIn> result = CheckIn.GetCheckInByMonth(new DateTime(year, month, 1));

        if (!IsPostBack)
        {
            checkInList.Text = transResult(result);
        }
    }