Esempio n. 1
0
    protected void Project_Bind()
    {
        Biz_Pms_Info bizPms    = new Biz_Pms_Info();
        object       StartDate = this.prj_sDate.Value;
        object       EndDate   = this.prj_eDate.Value;

        DataTable DT = bizPms.Get_Project_List((DateTime)StartDate, (DateTime)EndDate);

        UltraWebGrid1.DataSource = DT;
        UltraWebGrid1.DataBind();
    }