liebiexiu.aspx.cs
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:2k
源码类别:

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. public partial class qs_wenjian_liebiexiu : System.Web.UI.Page
  14. {
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         if (!IsPostBack) 
  18.         {
  19.             string id=this.Request.QueryString["ftype_id"];
  20.             int fid = Int32.Parse(id);
  21.             if (fid == 1)
  22.             {
  23.                 this.Response.Write(string.Format(GetRedirect.WINALERT, "其他类别为默认类不能修改"));
  24.                 this.Response.Write(string.Format(GetRedirect.REDIRECT, "liebieguanli.aspx"));
  25.             }
  26.             else { 
  27.             filetype ft = filetypeBLL.Select(fid);
  28.             this.txtLeiBeiName.Text=ft.ftype_filetype;
  29.         }
  30.         }
  31.         
  32.     }
  33.     protected void btXiu_Click(object sender, EventArgs e)
  34.     {
  35.         string name=this.txtLeiBeiName.Text;
  36.         string id = this.Request.QueryString["ftype_id"];
  37.         int fid = Int32.Parse(id);
  38.         
  39.         filetype ft = filetypeBLL.Select(fid);
  40.         filetype ff = new filetype();
  41.         ff.ftype_id = ft.ftype_id;
  42.         ff.ftype_filetype = name;
  43.         filetypeBLL.Update(ff);
  44.         this.Response.Write(string.Format(GetRedirect.WINALERT, "修改成功"));
  45.         this.Response.Write(string.Format(GetRedirect.REDIRECT, "liebieguanli.aspx"));
  46.        
  47.     }
  48. }