| Home >
<%
'-----------------------------------------------
' CATEGORY ROUTE
'-----------------------------------------------
Dim arrCatLineage, CatName, i
arrCatLineage = Split(CatLineage,",")
For i = 0 To UBOUND(arrCatLineage)
CatName = GetCat(arrCatLineage(i))
If i <> ubound(arrCatLineage) Then
CatName = CatName + " > "
End If
Response.Write(CatName)
Next %> |
|
<% If Not rsSubs.BOF OR Not rsSubs.EOF Then %>
<%
Dim startrw, endrw, numberColumns, numrows
startrw = 0
endrw = HLooperSubCat__index
numberColumns = Application(COMPANYNAME & "DisplaySubCatColumns") ' SUB CATS
numrows = -1
while((numrows <> 0) AND (Not rsSubs.EOF))
startrw = endrw + 1
endrw = endrw + numberColumns
%>
<%
While ((startrw <= endrw) AND (Not rsSubs.EOF))
%>
| " class="sub_cats_lp"><%=(rsSubs.Fields.Item("Category").Value)%><% If Application(COMPANYNAME & "DisplayLinksTotal") = "on" then%>(<%=(rsSubs.Fields.Item("CategoryCount").Value)%>)<% End If %> |
<%
startrw = startrw + 1
rsSubs.MoveNext()
Wend
%>
<%
numrows=numrows-1
Wend
' CLOSE SUB CATS RECORDSET
rsSubs.Close()
Set rsSubs = Nothing
%>
|
<% End If %>
<% Response.Write("" & CatTitle & "
") %>
<%
If IsArray(arrLinks) Then
For i = 0 to ubound(arrLinks, 2)
%>
<% = arrLinks(5, i) %>
<% = arrLinks(6, i) %>
Date Added:
<% = arrLinks(14, i) %>
<%
' TRIM STRING
If Len(arrLinks(3, i)) > 75 Then
Response.Write (Left(arrLinks(3, i), 75) & "...")
Else
Response.Write (arrLinks(3, i))
End If
%>
|
<% If Application(COMPANYNAME & "WebShot") = "on" then%> <% = arrLinks(3, i) %>" alt="<% = arrLinks(3, i) %>" width="120" height="90" border="0" /> |
<% End If %>
<%
If i <> ubound(arrLinks, 2) Then
%>
| colspan="2"<% End If %> class="tdback"> |
<% End If %>
<%
Next
Response.Write(" ")
Else
Response.Write (" No link found in this page!
")
End If
%> |
<%
If IsArray(arrNewLinks) Then
For i = 0 to ubound(arrNewLinks, 2)
%>
<% = arrNewLinks(5, i) %>
<% = arrNewLinks(6, i) %>
Date Added:
<% = arrNewLinks(14, i) %>
<%
' TRIM STRING
If Len(arrNewLinks(3, i)) > 75 Then
Response.Write (Left(arrNewLinks(3, i), 75) & "...")
Else
Response.Write (arrNewLinks(3, i))
End If
%>
|
<% If Application(COMPANYNAME & "WebShot") = "on" then%>
<% = arrNewLinks(3, i) %>" alt="<% = arrNewLinks(3, i) %>" width="120" height="90" border="0"> |
<% End If %>
<%
If i <> ubound(arrNewLinks, 2) Then
%>
| colspan="2"<% End If %> class="tdback"> |
<% End If %>
<%
Next
'Response.Write(" ")
Else
Response.Write (" No link found in this page!
")
End If
%> |
|
|