protected void BtnAdd_Click(object sender, EventArgs e)
 {
     if (TaskResourceAction.InsertResource(this.ProjectCode.ToString(), this.TaskCode, this.WbsType, "8D50B405-D418-4fe4-B204-0F654C79EF2B", base.UserCode))
     {
         this.DataGrid_Bind("1,2,3", this.WbsType);
         return;
     }
     this.JS.Text = "alert('添加失败!');";
 }
    protected void BtnDel_Click(object sender, EventArgs e)
    {
        SLTaskResource data = this.GetData();

        if (TaskResourceAction.DelResource(data))
        {
            this.JS.Text = "alert('删除成功!');";
            this.DataGrid_Bind("1,2,3", this.WbsType);
            return;
        }
        this.JS.Text = "alert('删除失败!');";
    }