コード例 #1
0
ファイル: Get_Job.aspx.cs プロジェクト: zhenghua75/kmdx_web
    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();
    }