Example #1
0
    private void BindData()
    {
        CW_OutStockBU out1 = new CW_OutStockBU();
        Hashtable     ht   = out1.GetObjectByID(Request.QueryString["id"]);


        for (int i = 0; i < arr1.Length; i++)
        {
            Util.SetControlValue(this.bill.Parent.FindControl(arr1[i]), ht[arr1[i]]);
        }
        if (this.billtime.Text != "" && this.billtime.Text != null)
        {
            this.billtime.Text = DateTime.Parse(this.billtime.Text).ToString("yyyy-M-d");
        }
        if (ht["checktime"] != DBNull.Value)
        {
            this.Button1.Visible = false;
            this.Button2.Attributes["onclick"] = "history.go(-1);return false;";
        }
        else
        {
            this.Button2.Attributes["onclick"] = "top.location.href='CheckShouKuanList.aspx';return false;";
        }

        ///////////////////////////////////////////
        this.Repeater1.DataSource = out1.GetOutStockBill(this.bill.Text);
        this.Repeater1.DataBind();

        out1.Close();
    }