⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 liebiexiu.aspx.cs

📁 OA自动化办公系统,就是OA自动化办公系统
💻 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 COM.OA.BLL;

public partial class qs_wenjian_liebiexiu : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack) 
        {
            string id=this.Request.QueryString["ftype_id"];
            int fid = Int32.Parse(id);

            if (fid == 1)
            {
                this.Response.Write(string.Format(GetRedirect.WINALERT, "其他类别为默认类不能修改"));
                this.Response.Write(string.Format(GetRedirect.REDIRECT, "liebieguanli.aspx"));

            }
            else { 
            filetype ft = filetypeBLL.Select(fid);
            this.txtLeiBeiName.Text=ft.ftype_filetype;
        }

        }
        

    }
    protected void btXiu_Click(object sender, EventArgs e)
    {
        string name=this.txtLeiBeiName.Text;
        string id = this.Request.QueryString["ftype_id"];
        int fid = Int32.Parse(id);
        

        filetype ft = filetypeBLL.Select(fid);


        filetype ff = new filetype();
        ff.ftype_id = ft.ftype_id;
        ff.ftype_filetype = name;

        filetypeBLL.Update(ff);
        this.Response.Write(string.Format(GetRedirect.WINALERT, "修改成功"));
        this.Response.Write(string.Format(GetRedirect.REDIRECT, "liebieguanli.aspx"));
       
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -