Exemple #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            //设定按钮权限
            ImageButton1.Visible = ZWL.Common.PublicMethod.StrIFIn("|089M|", ZWL.Common.PublicMethod.GetSessionValue("QuanXian"));

            ZWL.BLL.ERPSystemSetting MyModel = new ZWL.BLL.ERPSystemSetting();
            MyModel.GetModel();
            TextBox1.Text = MyModel.FileType.Replace("||",",").Replace("|","");
        }
    }
Exemple #2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            ZWL.BLL.ERPSystemSetting MyModel = new ZWL.BLL.ERPSystemSetting();
            MyModel.GetModel();
            TextBox1.Text = MyModel.FileType.Replace("||", ",").Replace("|", "");

            //设定按钮权限
            ImageButton1.Visible = ZWL.Common.PublicMethod.StrIFIn("|073m|", ZWL.Common.PublicMethod.GetSessionValue("QuanXian"));
        }
    }
Exemple #3
0
    protected void ImageButton1_Click(object sender, EventArgs e)
    {
        ZWL.BLL.ERPSystemSetting MyModel = new ZWL.BLL.ERPSystemSetting();
        MyModel.FileType = "|" + TextBox1.Text.Trim().Replace(",", "||") + "|";
        MyModel.Update();
        ZWL.Common.MessageBox.Show(this, "修改系统参数成功!");

        //写系统日志
        ZWL.BLL.ERPRiZhi MyRiZhi = new ZWL.BLL.ERPRiZhi();
        MyRiZhi.UserName    = ZWL.Common.PublicMethod.GetSessionValue("UserName");
        MyRiZhi.DoSomething = "用户设置系统参数";
        MyRiZhi.IpStr       = System.Web.HttpContext.Current.Request.UserHostAddress.ToString();
        MyRiZhi.Add();
    }
Exemple #4
0
    protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
    {
        ZWL.BLL.ERPSystemSetting MyModel = new ZWL.BLL.ERPSystemSetting();
        MyModel.FileType = "|"+TextBox1.Text.Trim().Replace(",","||")+"|";
        MyModel.Update();
        ZWL.Common.MessageBox.Show(this, "修改系统参数成功!");

        //写系统日志
        ZWL.BLL.ERPRiZhi MyRiZhi = new ZWL.BLL.ERPRiZhi();
        MyRiZhi.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName");
        MyRiZhi.DoSomething = "用户设置系统参数";
        MyRiZhi.IpStr = System.Web.HttpContext.Current.Request.UserHostAddress.ToString();
        MyRiZhi.Add();
    }