コード例 #1
0
    protected void Bind_Evaluation_Ranks(int EID)
    {
        DataTable dtSelected   = BLL_Crew_Evaluation.Get_EvaluationSelectedRanks(UDFLib.ConvertToInteger(EID), GetSessionUserID());
        DataTable dtUnSelected = BLL_Crew_Evaluation.Get_EvaluationUnSelectedRanks(UDFLib.ConvertToInteger(EID), GetSessionUserID());

        GridView_Selected.SelectedIndex    = -1;
        GridView_NotSelected.SelectedIndex = -1;

        GridView_Selected.DataSource = dtSelected;
        GridView_Selected.DataBind();

        GridView_NotSelected.DataSource = dtUnSelected;
        GridView_NotSelected.DataBind();
    }