Asp.net simple method to determine whether a user is logged on

Source: Internet
Author: User

If every page is written

The code is as follows: Copy code

If (Session ["user"] = null)
        {
Response. Redirect ("login. aspx ");
        }

The following describes a simpler solution.

Asp.net page. all cs files inherit System. web. UI. page, point to page, and then go to the definition, we will see all the data in the page ,. cs class files are read-only. If we cannot modify them, we can only create a new class to inherit the page, then rewrite some of the methods, and then let all the pages inherit the class.

First reference Using System. Web. UI. Page;

The code is as follows: Copy code

Public class Class1: Page
{

// Rewrite OnInit
Override protected void OnInit (EventArgs e)
    {  
Base. OnInit (e );

// If the Session does not exist
If (Session ["user"] = null)
        {
Response. Redirect ("Login. aspx ");
        }
    }
}

The previous Page was written as public partial class WebForm1: Page.

Now, you can inherit class1.

The code is as follows: Copy code

Public partial class WebForm12: Class1

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.