Automatic Refresh in EMS One-View Dashboard

EMS One-View Dashboard
The standard configuration of the ENow Management System (EMS) provides automatic Refresh for the One-View Dashboard Homepage only.
 
If an automatic refresh is required for any other page of the EMS Dashboard, i.e. Exchange 2013 Namespace, you need to modify the associated ASPX file.
 

Example

Modification of ExchangeWorkloadTest.aspx
 
Before modifying the ASPX file:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
                <HEAD>
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
                               <title><%=GetHeadTitle()%>
                               </title>
                               <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
                               <meta name="CODE_LANGUAGE" Content="C#">
                               <meta name="vs_defaultClientScript" content="JavaScript">
                               <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
                               <%
                                               skin.WriteCommonHtmlHeadEntries(Response);
                               %>
                </HEAD>
 
After modifying the ASPX file:
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
                <HEAD>
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
                               <title><%=GetHeadTitle()%>
                               </title>
                               <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
                               <meta name="CODE_LANGUAGE" Content="C#">
                               <meta name="vs_defaultClientScript" content="JavaScript">
                               <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
                               <%
                                               skin.WriteCommonHtmlHeadEntries(Response);
                                               skin.WriteAutoRefreshHeader(Response);
                               %>
                </HEAD>
 
This change will be overwritten when a new version of the EMS Web Servers is being installed. After installing a new version it is required to apply the changes again.
 

Read more about our Consulting Services: http://www.granikos.eu/en | Free 21-day trial of ENow Management System http://www.granikos.eu/en/Mailscape365
 
Articles and Information provided in the Granikos Knowledge Base is posted as a service offering only and provided AS-IS. Granikos GmbH & Co. KG makes no warranty, implied or otherwise, regarding the performance or reliability of the information provided. The reader has to make a decision on how the information is being used.