Rule.aspx.cs
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:2k
源码类别:
Email客户端
开发平台:
Visual 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 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>");
- }
- }
- }