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/vintagedoorknobs/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

' --- 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="panel panel-default">
          <div class="panel-heading">You recently viewed</div>
          <div class="panel-body">
<%
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>
        </div>
<!-- END OF RECENTLY VIEWED -->
<%
End Sub

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

If Not ForProductList Then ShowRecentlyViewed
%>