Ejemplo n.º 1
0
    protected void GridView_Category_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
        int    ID            = UDFLib.ConvertToInteger(GridView_Category.DataKeys[e.RowIndex].Value.ToString());
        string Category_Name = e.NewValues["Category_Name"].ToString();

        BLL_Crew_Evaluation.UPDATE_Category(ID, Category_Name, GetSessionUserID());
        GridView_Category.EditIndex = -1;
        Load_CategoryList();
    }