OnPreInit,OnInit ,OnInitComplete ,OnPreLoad ,Page_Load等执行顺序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Default5 : System.Web.UI.Page
{
    static int count = 0;
    protected void Page_Load(object sender, EventArgs e)
    {
        Response.Write(count + "Page_Load <br />");
        count++;
    }
    protected override void OnPreInit(EventArgs e)
    {
        base.OnPreInit(e);
        Response.Write(count + "OnPreInit <br />");
        count++;
    }
    protected override void OnInit(EventArgs e)
    {
        base.OnInit(e);
        Response.Write(count + "OnInit <br />");
        count++;
    }
    protected override void OnLoad(EventArgs e)
    {
        base.OnLoad(e);
        Response.Write(count + "OnLoad <br />");
        count++;
    }
    protected override void OnPreLoad(EventArgs e)
    {
        base.OnPreLoad(e);
        Response.Write(count + "OnPreLoad <br />");
        count++;
    }
    protected override void OnLoadComplete(EventArgs e)
    {
        base.OnLoadComplete(e);
        Response.Write(count + "OnLoadComplete <br />");
        count++;
    }
    protected override void OnInitComplete(EventArgs e)
    {
        base.OnInitComplete(e);
        Response.Write(count + "OnInitComplete <br />");
        count++;
    }
    protected override void OnUnload(EventArgs e)
    {
        base.OnUnload(e);
    }
    protected override void OnDataBinding(EventArgs e)
    {
        base.OnDataBinding(e);
        Response.Write(count + "OnDataBinding <br />");
        count++;
    }
    protected override void OnPreRender(EventArgs e)
    {
        base.OnPreRender(e);
        Response.Write(count + "OnPreRender <br />");
        count++;
    }
    protected void btnGraphics_Click(object sender, EventArgs e)
    {
        //Bitmap bmp = new Bitmap(10, 10);
        //Graphics g = Graphics.FromImage(bmp);
        Response.Write(count + "btnGraphics_Click <br />");
        count++;
    }

}



结果为:

0OnPreInit
1OnInit
2OnInitComplete
3OnPreLoad
4Page_Load
5OnLoad
6OnLoadComplete
7OnPreRender


*session失效或者超时的跳转(站长后台)

判断页面(每个页面调用)

protected override void OnPreInit(EventArgs e)
    {
        new Users().GetUserInfoCookie(out _mywebhostid, out _myuserid);
        if (_myuserid == string.Empty || _mywebhostid == 0)
        {
            Response.Redirect("~/login.aspx?reurl=" + HttpUtility.UrlEncode(Request.Url.AbsoluteUri));
        }
        else
        {
            new Users().GetUserInfoCookie(out _mywebhostid, out _myuserid);
        }
        base.OnPreInit(e);
    }

登录页面

 string strIp = Request.UserHostAddress;
                    string strSuccessUrl = Request.QueryString["reurl"] == null ? "~/index.aspx" : HttpUtility.UrlDecode(Request.QueryString["reurl"].ToString());


                    Users u = new Users();
                    string loginMsg = u.LoginMsg(strUserId, strPassword, Request.UserHostAddress);
                    u.LoginMsg2(strUserId, Request.UserHostAddress, Request.UserAgent, 1);

                    // 登录跳转到成功页面
                    if (loginMsg == string.Empty)
                    {
                        LoginLog();
                        Response.Redirect(strSuccessUrl);
                    }



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值