Ejemplo n.º 1
0
    protected void Job_List_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        int       nID       = Int32.Parse(Job_List.DataKeys[e.RowIndex].Value.ToString());
        JobSystem jobSystem = new JobSystem();

        jobSystem.Delete_Job(nID);
        BinData();
    }