示例#1
0
    protected void GridView_EvaluationType_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
        int    ID = UDFLib.ConvertToInteger(GridView_EvaluationType.DataKeys[e.RowIndex].Value.ToString());
        string Evaluation_Type = e.NewValues["Evaluation_Type"].ToString();

        BLL_Crew_Evaluation.UPDATE_EvaluationType(ID, Evaluation_Type, GetSessionUserID());
        GridView_EvaluationType.EditIndex = -1;
        Load_TypeList();
    }