liebieshanchu.aspx.cs
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小: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. using COM.OA.Entity;
  12. using COM.OA.BLL;
  13. using System.Collections.Generic;
  14. public partial class qs_wenjian_liebieshanchu : System.Web.UI.Page
  15. {
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         string id=this.Request.QueryString["ftype_id"];
  19.         int fid = Int32.Parse(id);
  20.         string where = "f_ftype_id={0}";
  21.         where = string.Format(where, fid);
  22.         IList<files> list = filesBLL.Select(where);
  23.         foreach (files fs in list) 
  24.         {
  25.             fs.f_ftype_id = 1;
  26.             filesBLL.Update(fs);
  27.         }
  28.         if (fid == 1)
  29.         {
  30.             this.Response.Write(string.Format(GetRedirect.WINALERT, "其他类别为默认类不能删除"));
  31.             this.Response.Write(string.Format(GetRedirect.REDIRECT, "liebieguanli.aspx"));
  32.         }
  33.         else
  34.         {
  35.             filetypeBLL.Delete(fid);
  36.             this.Response.Write(string.Format(GetRedirect.REDIRECT, "liebieguanli.aspx"));
  37.         }
  38.     }
  39. }