Page_PreInit在网页传值的应用
以前,我页面接收传值和保持Session会话都是在Page_Load事件里面操作的,今天又把天轰川的那个教程拿来看了一下,发现原来Page_PreInit跟Page_Load的不回传条件的效果是一样的,所以我把以前放在Page_Load的接收传值方式放到了Page_PreInit事件里面了,这样看起来代码也清晰多了。
部分代码如下:
可能这个对很多ASPNET爱好者来说是最基础的东西,恳请大家多多指点,呵呵
部分代码如下:
int SubId = 0;
string SessionName;
protected void Page_PreInit(object sender, EventArgs e)
{
if (Request.Params["SubId"] != null && Request.Params["SubId"].Length > 0)
{
SubId = int.Parse(Request.Params["SubId"]);
}
else
{
Response.Redirect("Error.aspx");
}
SessionName = Session["name"].ToString();
if (SessionName == "" || SessionName == null)
{//判断是否登录
Response.Redirect("Error.aspx");
}
}
string SessionName;
protected void Page_PreInit(object sender, EventArgs e)
{
if (Request.Params["SubId"] != null && Request.Params["SubId"].Length > 0)
{
SubId = int.Parse(Request.Params["SubId"]);
}
else
{
Response.Redirect("Error.aspx");
}
SessionName = Session["name"].ToString();
if (SessionName == "" || SessionName == null)
{//判断是否登录
Response.Redirect("Error.aspx");
}
}
可能这个对很多ASPNET爱好者来说是最基础的东西,恳请大家多多指点,呵呵