ActivEarth.Groups.CreateGroup.Page_Load C# (CSharp) Метод

Page_Load() защищенный Метод

Prepares the list of hashtags when the page loads. Other fields are empty for the new Group. Redirects if the User is not logged in.
protected Page_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["userDetails"] == null)
            {
                Response.Redirect("~/Account/Login.aspx");
            }

            if (lblAllHashTags.Text == ""){
                lblAllHashTags.Text = "[]";
            }
        }