wzp
2021-09-16 f73f7f06ed1cbdca4a1d7c127ca89829b6f2433c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
using Common;
using Dao;
using Model;
using System;
using System.Web;
using System.Web.Profile;
using System.Web.SessionState;
 
public partial class SettingPage : PageBase<SysUser>, IRequiresSessionState
    public GwSetting Setting { get; protected set; }
 
    protected void Page_Load(object sender, EventArgs e)
    {
        this.CheckRight("107", FailedOperation.PromptOnly);
        using (GwSettingDao gwSettingDao = new GwSettingDao())
            this.Setting = gwSettingDao.GetCurrentSetting();
    }
}