File: D:/HostingSpaces/MBoogaard/oosting-horseriding.com/CMS/CMSPages/DevicePreview.aspx.cs
using System;
using System.Linq;
using CMS.UIControls;
using CMS.Helpers;
using CMS.ExtendedControls.ActionsConfig;
public partial class CMSPages_DevicePreview : CMSPage
{
/// <summary>
/// Handles the Load event of the Page control.
/// </summary>
protected void Page_Load(object sender, EventArgs e)
{
CurrentMaster.PanelContent.CssClass = "";
// Setup the device rotation
ucView.RotateDevice = ValidationHelper.GetBoolean(CookieHelper.GetValue(CookieName.CurrentDeviceProfileRotate), false);
}
/// <summary>
/// PreRender event handler
/// </summary>
protected override void OnPreRender(EventArgs e)
{
CurrentMaster.HeaderActions.IsLiveSite = false;
base.OnPreRender(e);
}
}