📄 liebieshezhi.aspx.cs
字号:
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_liebieshezhi : 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 btLeiBeiShe_Click(object sender, EventArgs e)
{
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];
string lid=this.ddlLeiBei.Text;
int lbid=Int32.Parse(lid);
fs.f_ftype_id = lbid;
filesBLL.Update(fs);
this.Response.Write(string.Format(GetRedirect.WINALERT, "设置成功"));
this.Response.Write(string.Format(GetRedirect.REDIRECT, "jieshouwenjian.aspx"));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -