Esempio n. 1
0
    protected void Project_Detail_Bind()
    {
        object StartDate = this.prj_sDate.Value;
        object EndDate   = this.prj_eDate.Value;

        DataTable DT = bizPmsInfo.Get_Project_Detail(PRJ_ID, (DateTime)StartDate, (DateTime)EndDate);

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