asp.NetBasePageクラス+Session汎用ユーザーログイン権限制御

3012 ワード

でも多くの人が
 
  
protected void Page_Load(object sender, EventArgs e)
{}

中にはコードを書き、いくつかのボタンにsessionが存在するかどうかを判断するまで書きます~~
これはもちろん効果的ですが、問題は、1000ページある場合~~ctrl+Cが必要です.のCtrl+V何度も~~~
私の考えはBasePageクラス継承システムを書くことです.Web.UI.Page
 
  
public class BasePage : System.Web.UI.Page
{
//pageunload , , , ,
protected void Page_Unload(object sender, EventArgs e)
{
}
protected override void OnPreInit(EventArgs e)
{
base.OnPreInit(e);
if (!SessionData.IsLogin())
{// : :
Response.Redirect(string.Format("~/ReLogin.aspx?Page={0}", Request.Path));
}}

なぜ私がPageパラメータを持っているのかは、ログインに成功した後、ログイン前のページに戻るためです.
また、SessionDataクラスにも貢献します.
 
  
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using ExpressPlatform.Common;
namespace ExpressPlatform.Web.AppCode
{
public class SessionKey
{
public const string UserInfo = "user";
}
///
/// session ,
///

public class SessionData
{
///
/// session
///

///
public static MdlSessionCustomerInfo GetUserInfo()
{
MdlSessionCustomerInfo userInfo = SessionManager.GetSessionObject(SessionKey.UserInfo);
if (userInfo == null)
{
userInfo = new MdlSessionCustomerInfo();
//
SessionManager.SetSessionObject(SessionKey.UserInfo, userInfo);
}
return userInfo;
}
///
/// session
///

///
public static void SetUserInfo(MdlSessionCustomerInfo userInfo)
{
SessionManager.SetSessionObject(SessionKey.UserInfo, userInfo);
}
///
/// session
///

public static void ClearUserInfo()
{
SessionManager.SetSessionObject(SessionKey.UserInfo, null);
}
///
///
///

///
public static bool IsLogin()
{
bool ret = false;
MdlSessionCustomerInfo userInfo = SessionManager.GetSessionObject(SessionKey.UserInfo);
if (userInfo != null)
ret = true;
return ret;
}
}
}
 
  
public class BasePage : System.Web.UI.Page