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/hyperflight/! bs5/inc-template-recently-viewed.asp
<%
' (SS,12/6/09) new template for recently viewed items, based on inc-template-best-sellers.asp
' (SS,26/8/14) modified for Bootstrap
' (SS,23/5/24) modified for Bootstrap 5 (replaced panel with card)
' (SS,30/5/24) due to change in structured removed call i.e. bottom line If Not ForProductList Then ShowRecentlyViewed
' otherwise it syntax error results due to sub being defined within a sub, template now included inc-main.asp
' (SS,14/05/26) added to HF

' --- START OF RECENTLY VIEWED TEMPLATES --- '
Sub ShowRecentlyViewedEmpty
' html to show if no recently viewed to go here '
%>
<%
End Sub

Sub ShowRecentlyViewedHeader
%>
<!-- START OF RECENTLY VIEWED -->       
        <div class="recently-viewed-section">
<%
  ShowSectionHeading "Recently viewed", ""
End Sub

Sub ShowRecentlyViewedItem(ANumber, AProductCode, AProductName)
%>
<!-- START OF RECENTLY VIEWED ITEM -->
        <a href="<%=GetProductLink(AProductCode)%>" title="<%=AProductName%>"><img class="recently-viewed-image" src="<%=GetProductImageLink(AProductCode,"s")%>" width="100" height="100" alt="<%=AProductCode%>" /></a>
<!-- END OF RECENTLY VIEWED ITEM -->
<%
End Sub

Sub ShowRecentlyViewedFooter
%>
        </div>
<!-- END OF RECENTLY VIEWED -->
<%
End Sub

' --- END OF RECENTLY VIEWED TEMPLATES --- '

%>