HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RMourik/bassol.nl/CMS/CMSModules/ContactManagement/Pages/Tools/Account/New.aspx.cs
using System;

using CMS.Helpers;
using CMS.OnlineMarketing;
using CMS.SiteProvider;
using CMS.UIControls;

[Help("onlinemarketing_account_new", "helptopic")]
[Breadcrumbs]
[Breadcrumb(0, "om.account.list", "~/CMSModules/ContactManagement/Pages/Tools/Account/List.aspx?{%QueryString|(encode)false%}", null)]
[Breadcrumb(1, "om.account.new")]
public partial class CMSModules_ContactManagement_Pages_Tools_Account_New : CMSContactManagementAccountsPage
{
    #region "Variables"

    private int siteId;

    #endregion


    #region "Page events"

    protected void Page_Init(object sender, EventArgs e)
    {
        siteId = QueryHelper.GetInteger("siteid", SiteContext.CurrentSiteID);

        if (IsSiteManager)
        {
            PageTitle.TitleText = GetString("om.account.new");
        }

        editElem.SiteID = siteId;
    }


    protected void Page_Load(object sender, EventArgs e)
    {
        CheckReadPermission(siteId);
    }

    #endregion
}