protected void Page_Load()

in Source/Website/Admin.aspx.cs [11:22]


        protected void Page_Load(object sender, EventArgs e)
        {
            if(!Page.IsPostBack)
            {
                if (!Page.User.Identity.IsAuthenticated)
                {
                    FormsAuthentication.RedirectToLoginPage();
                }

                BindCustomersToListView();
            }
        }