Top.Page_Load C# (CSharp) Method

Page_Load() protected method

protected Page_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
    protected void Page_Load(object sender, EventArgs e)
    {
        HttpCookie cookie = Request.Cookies["OEM"];
        if (cookie != null)
        {
            string imagePath = (cookie.Value == null || cookie.Value.Trim() == string.Empty) ? "Images/" : cookie.Value.Trim();
            this.LeftImage.ImageUrl = imagePath + "Logo_Lit.png";
        }
        this.Info.ForeColor = Color.Black;

        if (this.Session["Current_User"] == null)
        {
            this.Response.Redirect("~/Logoff.aspx");
        }
        this.Info.Text = TheEntityPreferenceMgr.LoadEntityPreference("CompanyName").Value;

        if (Session[AbstractCasModule.CONST_CAS_PRINCIPAL] != null)
        {
            this.logoffHL.NavigateUrl = "https://sso.hoternet.cn:8443/cas/logout?service=http://demo.sconit.com/Logoff.aspx";
            this.logoffHL.Target = "_parent";
        }
        else
        {
            this.logoffHL.NavigateUrl = "~/Logoff.aspx";
            this.logoffHL.Target = "_parent";
        }

        //[{ desc: '愛彼思塑膠-原材料仓库', value: 'ABSS' },{ desc: '上海阿仨希-外购件二楼仓库', value: 'ABXG' }]
        //IList<Item> items = TheItemMgr.GetAllItem();
        //string data = "[";
        //for (int i = 0; i < items.Count; i++)
        //{
        //    Item item = items[i];
        //    string desc = item.Desc1;
        //    desc = desc.Replace("'", "");
        //    data += TextBoxHelper.GenSingleData(desc, item.Code) + (i < (items.Count - 1) ? "," : string.Empty);
        //}
        //data += "]";
        this.data.Value = TheItemMgr.GetCacheAllItemString();
    }