WorkDestroy.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class Work_WorkDestroy : System.Web.UI.Page
  12. {
  13.     /// <summary>
  14.     /// 模板 
  15.     /// </summary>
  16.     Model.FlowRun MR = new Model.FlowRun();
  17.     /// <summary>
  18.     /// 业务
  19.     /// </summary>
  20.     BLL.FlowRun BR = new BLL.FlowRun();
  21.     protected void Page_Load(object sender, EventArgs e)
  22.     {
  23.         LoginLogic.MatchLoad("../", "Work_WorkDestroy");
  24.         object objid=Request.QueryString["id"];
  25.         if (objid != null)
  26.         {
  27.             MR = BR.GetModel(int.Parse(objid.ToString()));
  28.             MR.YXZT = "销毁";
  29.             BR.Update(MR);
  30.         }
  31.         Response.Redirect("MyWorkList.aspx");
  32.     }
  33. }