Beispiel #1
0
    /// <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();
    }