Override the onload event in system. Web. UI. Page to implement session Verification

Source: Internet
Author: User

Create a class library

Using system;
Using system. Data;
Using system. configuration;
Using system. Web;
Using system. Web. Security;
Using system. Web. UI;
Using system. Web. UI. webcontrols;
Using system. Web. UI. webcontrols. webparts;
Using system. Web. UI. htmlcontrols;

namespace zuhuachina. option
{< br> public class pagebase: system. web. UI. page // indicates inheriting the page class
{< br> // because the page inherits adminpagebase, no session exists before the page construction is complete. Therefore, using session in adminpagebase () cannot correctly check the logon status
Public void adminpagebase ()
{< br> //
// todo: add the constructor logic here
//
}

Public override void onload (eventargs e) // override the onload method in the page class
{< br> If (httpcontext. current. session ["username"] = NULL | httpcontext. current. session ["username"]. tostring () = "0")
{< br> response. redirect ("login. aspx ");
response. end ();
}< br> base. onload (E); // execute the onload method of the parent class
}< BR >}

When using this class on a page, you only need to inherit the pagebase class, so that you can first execute the method in pagebase, and then executeCode

Replace public partial class index: system. Web. UI. Page with public partial class index: pagebase

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.