Example #1
0
    void AdvanceSearch1_OnMySearchClick(object sender, EventArgs e)
    {
        ZcMng1_AdvanceSearch search1 = sender as ZcMng1_AdvanceSearch;

        if (search1 != null)
        {
            List <SearchField> list1 = search1.SearchConditon;

            U_ZCTimeBU time1 = new U_ZCTimeBU();
            DataSet    ds1   = time1.GetMyTimeListInfo(list1, User.Identity.Name, this.danwei.Text.Trim());
            this.GridView1.DataSource = ds1;
            this.GridView1.DataBind();
            time1.Close();
            ds1.Dispose();
        }
    }