示例#1
0
    protected new void Page_Load(object sender, EventArgs e)
    {
        base.AllowHttpMethod("GET");
        base.DisableTop(false);

        ASP.masterpage_custom_decoratedmasterpage_master masterPage = this.Master as ASP.masterpage_custom_decoratedmasterpage_master;
        masterPage.AutoIncludeCSS = false;
        masterPage.AutoIncludeJS  = false;
    }
示例#2
0
    protected new void Page_Load(object sender, EventArgs e)
    {
        base.DisableTop(true);

        if (SystemAreaCode.dict.ContainsKey("County"))
        {
            CountyData = JsonConvert.SerializeObject(SystemAreaCode.dict["County"]);
        }

        if (SystemAreaCode.dict.ContainsKey("Town"))
        {
            TownData = JsonConvert.SerializeObject(SystemAreaCode.dict["Town"]);
        }

        ASP.masterpage_custom_decoratedmasterpage_master masterPage = this.Master as ASP.masterpage_custom_decoratedmasterpage_master;
        masterPage.AutoIncludeCSS = false;
        masterPage.AutoIncludeJS  = false;
    }