Esempio n. 1
0
    protected void BindGridData()
    {
        FreightEasy.Accounting.APDispute myDs = new FreightEasy.Accounting.APDispute();
        myDs.GetAllRecords(elt_account_number, Session["VENDOR"].ToString(),
                           Session["SDATE"].ToString(), Session["EDATE"].ToString());
        DataSet ds = myDs;

        UltraWebGrid1.DataSource = ds;
        UltraWebGrid1.DataBind();
        UltraWebGrid1.ExpandAll();
    }
Esempio n. 2
0
    protected void btnGo_Click(object sender, ImageClickEventArgs e)
    {
        FreightEasy.Accounting.APDispute myDs = new FreightEasy.Accounting.APDispute();
        string elt_account_number             = Request.Cookies["CurrentUserInfo"]["elt_account_number"];

        myDs.GetAllRecords(elt_account_number, hVendorAcct.Value,
                           Webdatetimeedit1.Text, Webdatetimeedit2.Text);

        Session["Accounting_sPeriodBegin"] = Webdatetimeedit1.Text;
        Session["Accounting_sPeriodEnd"]   = Webdatetimeedit2.Text;
        Session["Accounting_sCompanName"]  = this.lstVendorName.Text;



        DataSet ds = new DataSet();

        foreach (DataTable dt in myDs.Tables)
        {
            ds.Tables.Add(dt.Copy());
        }
        Session["Accounting_sSelectionParam"] = "apdispute";
        Session["APDisputeDS"] = ds;
        ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "RediretThis", "window.top.location.href='/Accounting/APDispute/dataready'", true);
    }