rule.aspx.cs

来自「本系统有两种操作用户」· CS 代码 · 共 71 行

CS
71
字号
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 System.Data.SqlClient;

public partial class Module_Employee_ProRes_Rules : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Session["UserName"] != null)
        {
            if (Session["Popedom"].ToString() == "0")
            {
                this.panVisible.Visible = true;
                if (this.txtRule.ReadOnly == true)
                {
                    this.btnOK.Enabled = false;
                }
            }
        }
        else
        {
            Response.Write("<script language=javascript>top.location.href='../../Index.aspx'</script>");
        }
        string cmdtxt = "SELECT * FROM tb_Rule";
        SqlData da = new SqlData();
        SqlCommand Com = new SqlCommand(cmdtxt,da.ExceCon());
        SqlDataReader dr = Com.ExecuteReader();
        dr.Read();
        if (!IsPostBack)
        {
            if (dr.HasRows)
            {
                this.TextBox1.Text = dr["RuleTitle"].ToString();
                this.txtRule.Text = dr["RuleContent"].ToString();
            }
        }
    }
    protected void btnAmend_Click(object sender, EventArgs e)
    {
        this.txtRule.BackColor = System.Drawing.Color.White;
        this.TextBox1.BackColor = System.Drawing.Color.White;
        this.txtRule.ReadOnly = false;
        this.TextBox1.ReadOnly = false;
        this.btnOK.Enabled = true;
    }
    protected void btnOK_Click(object sender, EventArgs e)
    {
        string SqlStr = "UPDATE tb_rule SET RuleTitle='"+this.TextBox1.Text+"',RuleContent='"+this.txtRule.Text+"',RuleTime='"+DateTime.Now+"',RulePerson='"+Session["Name"].ToString()+"'";
        //Response.Write(SqlStr);
        //Response.End();
        SqlData da = new SqlData();
        if (da.ExceSQL(SqlStr))
        {
            Response.Write("<script language=javascript>alert('操作成功!');location='javascript:history.go(-1)'</script>");
        }
        else
        {
            Response.Write("<script language=javascript>alert('操作失败!');location='javascript:history.go(-1)'</script>");
        }
    }
}

⌨️ 快捷键说明

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