Exemplo n.º 1
0
    private void repBudExamBind(int budid)
    {
        DataTable dt = BGBudCostProManager.GetDtBcpByBudid(budid);

        if (dt.Rows.Count > 0)
        {
            repBudExam.DataSource = dt;
            repBudExam.DataBind();
        }
    }
Exemplo n.º 2
0
    private void repPayProjectBind(int budid)
    {
        DataTable dt = BGBudCostProManager.GetDtBcpByBudid(budid);

        if (dt.Rows.Count > 0)
        {
            HidRowCount.Value        = dt.Rows.Count.ToString();
            repPayProject.DataSource = dt;
            repPayProject.DataBind();
        }
    }