但是很多人都喜歡在
protected void Page_Load(object sender, EventArgs e) {}
裡面來寫程式碼,甚至在某些按鈕裡面寫判斷session是否存在~~
這樣當然是能實現效果的,問題就在,如果有1000個頁面~~你需ctrl+C。 。 。 Ctrl+V 很多~~~
我的想法就是寫一個BasePage類別繼承System.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"; } /// <summary> /// 所有session中的数据,在该类管理 /// </summary> public class SessionData { /// <summary> /// 获取session 中的 用户信息 /// </summary> /// <returns></returns> public static MdlSessionCustomerInfo GetUserInfo() { MdlSessionCustomerInfo userInfo = SessionManager<MdlSessionCustomerInfo>.GetSessionObject(SessionKey.UserInfo); if (userInfo == null) { userInfo = new MdlSessionCustomerInfo(); //把内容储存到应用程序 SessionManager<MdlSessionCustomerInfo>.SetSessionObject(SessionKey.UserInfo, userInfo); } return userInfo; } /// <summary> /// 重新设置session 中的用户信息 /// </summary> /// <param name="userInfo"></param> public static void SetUserInfo(MdlSessionCustomerInfo userInfo) { SessionManager<MdlSessionCustomerInfo>.SetSessionObject(SessionKey.UserInfo, userInfo); } /// <summary> /// 清楚session中用户信息 /// </summary> public static void ClearUserInfo() { SessionManager<MdlSessionCustomerInfo>.SetSessionObject(SessionKey.UserInfo, null); } /// <summary> /// 是否登入 /// </summary> /// <returns></returns> public static bool IsLogin() { bool ret = false; MdlSessionCustomerInfo userInfo = SessionManager<MdlSessionCustomerInfo>.GetSessionObject(SessionKey.UserInfo); if (userInfo != null) ret = true; return ret; } } }
public class BasePage : System.Web.UI.Page
更多asp.net BasePage類別+Session通用使用者登入權限控制相關文章請關注PHP中文網!