コード例 #1
0
ファイル: view.aspx.cs プロジェクト: daniela12/gooptic
    /// <summary>
    /// Bind Order Grid
    /// </summary>
    protected void BindGrid()
    {
        OrderAdmin _OrderAdmin = new OrderAdmin();
        //TList<Order> _Orders = _OrderAdmin.GetByAccountID(AccountID);
        DataSet DataSetOrderList = _OrderAdmin.GetByAccountID(AccountID, ZNodeConfigManager.SiteConfig.PortalID);

        uxGrid.DataSource = DataSetOrderList;
        uxGrid.DataBind();
    }