liebieshezhi.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 System.Collections.Generic;
  13. using COM.OA.BLL;
  14. public partial class qs_wenjian_liebieshezhi : System.Web.UI.Page
  15. {
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         if (!IsPostBack)
  19.         {
  20.             string id = this.Request.QueryString["f_id"];
  21.             int fid = Int32.Parse(id);
  22.             string where2 = "f_id='{0}'";
  23.             where2 = string.Format(where2, fid);
  24.             IList<files> listhf = filesBLL.Select(where2);
  25.             files fs = listhf[0];
  26.             //回复的文件名
  27.             this.Label1.Text = fs.f_filename;
  28.         }
  29.     }
  30.     protected void btLeiBeiShe_Click(object sender, EventArgs e)
  31.     {
  32.         
  33.         string id=this.Request.QueryString["f_id"];
  34.         int fid = Int32.Parse(id);
  35.         
  36.         string where2 = "f_id='{0}'";
  37.         where2 = string.Format(where2, fid);
  38.         IList<files> listhf = filesBLL.Select(where2);
  39.         files fs = listhf[0];
  40.        
  41.         string lid=this.ddlLeiBei.Text;
  42.         int lbid=Int32.Parse(lid);
  43.         fs.f_ftype_id = lbid;
  44.         filesBLL.Update(fs);
  45.         this.Response.Write(string.Format(GetRedirect.WINALERT, "设置成功"));
  46.         this.Response.Write(string.Format(GetRedirect.REDIRECT, "jieshouwenjian.aspx"));
  47.     }
  48. }