tianjiabeizhu.aspx.cs
资源名称:OASystem.rar [点击查看]
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:1k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Data;
- using System.Configuration;
- using System.Collections;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Web.UI.HtmlControls;
- using COM.OA.Entity;
- using System.Collections.Generic;
- using COM.OA.BLL;
- public partial class qs_wenjian_tianjiabeizhu : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack) {
- string id=this.Request.QueryString["f_id"];
- int fid = Int32.Parse(id);
- string where2 = "f_id='{0}'";
- where2 = string.Format(where2, fid);
- IList<files> listhf = filesBLL.Select(where2);
- files fs = listhf[0];
- //回复的文件名
- this.Label1.Text = fs.f_filename;
- }
- }
- protected void btSave_Click(object sender, EventArgs e)
- {
- //取备注内容
- string beizhu=this.txtBeiZhu.Text;
- string id = this.Request.QueryString["f_id"];
- int fid = Int32.Parse(id);
- string where2 = "f_id='{0}'";
- where2 = string.Format(where2, fid);
- IList<files> listhf = filesBLL.Select(where2);
- files fs = listhf[0];
- fs.f_remark = beizhu;
- filesBLL.Update(fs);
- this.Response.Write(string.Format(GetRedirect.REDIRECT, "fileslog.aspx"));
- }
- }