AccountManage.aspx.cs 628 B

1234567891011121314151617181920212223242526272829303132333435
  1. using BizCom;
  2. using Castle.ActiveRecord;
  3. using SQLData;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Data;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Web;
  10. using System.Web.UI;
  11. using System.Web.UI.WebControls;
  12. using Utils;
  13. using SiteCore;
  14. public partial class Sys_AccountManage : BasePage
  15. {
  16. protected override void OnPreInit(EventArgs e)
  17. {
  18. PmTag = "accountmanage";
  19. _selfCheckPermission = true;
  20. _checkRight = false;
  21. _addVisible = true;
  22. }
  23. protected void Page_Load(object sender, EventArgs e)
  24. {
  25. if (!IsPostBack)
  26. {
  27. }
  28. }
  29. }