tianjiabeizhu.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 System.Collections.Generic;
  13. using COM.OA.BLL;
  14. public partial class qs_wenjian_tianjiabeizhu : System.Web.UI.Page
  15. {
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         if (!IsPostBack) { 
  19.         string id=this.Request.QueryString["f_id"];
  20.         int fid = Int32.Parse(id);
  21.         
  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 btSave_Click(object sender, EventArgs e)
  31.     {
  32.         //取备注内容
  33.         string beizhu=this.txtBeiZhu.Text;
  34.         
  35.         string id = this.Request.QueryString["f_id"];
  36.         int fid = Int32.Parse(id);
  37.         string where2 = "f_id='{0}'";
  38.         where2 = string.Format(where2, fid);
  39.         IList<files> listhf = filesBLL.Select(where2);
  40.         files fs = listhf[0];
  41.         fs.f_remark = beizhu;
  42.         filesBLL.Update(fs);
  43.         this.Response.Write(string.Format(GetRedirect.REDIRECT, "fileslog.aspx"));
  44.     }
  45. }