| 1234567891011121314151617181920212223242526272829303132333435 |
- using BizCom;
- using Castle.ActiveRecord;
- using SQLData;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using Utils;
- using SiteCore;
- public partial class Sys_AccountManage : BasePage
- {
- protected override void OnPreInit(EventArgs e)
- {
- PmTag = "accountmanage";
- _selfCheckPermission = true;
- _checkRight = false;
- _addVisible = true;
- }
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- }
- }
- }
|