HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/castironradiatorcentre/changes prev/2024-02-29 (copies)/inc-template-page-content - Copy.asp
<%
' (SS,27/9/11) new template to show page content, does away with having about, customer-info, how to order, links, faq etc. templates
' (SS,1/9/14) added ShowPageTitle replacing existing div, added container divs
Sub ShowPageContent(APageName)
  Dim AHeading, AText
  AText = GetPageContent(APageName, AHeading) 
%>
  <div class="container">
  <%ShowPageTitle(AHeading)%>
  </div>
  <div class="container">
    <div id="other-pages">
    <%=AText%>
    </div>
  </div>
<%
End Sub
%>