
|
<% set rs = Conn.Execute("Select replace(itemLongDescr, '2009', '2010') as itemLongDescr from myadmin_texts where ID = 5")
rsarray = rs.GetRows %>
<%=rsarray(0,0)%> |
<% set rs = Conn.Execute("Select ID, itemTitle, itemLongDescr from myadmin_texts where itemType = 1 AND Active = 1 order by itemOrder")
rsarray = rs.GetRows
numrows = ubound(rsarray,2)
for i = 0 to numrows Step 3
%>
<%=rsarray(1,i)%>
|
<% if (numrows >= i + 1) then %>
<%=rsarray(1,i+1)%>
<% end if %> |
<% if (numrows >= i + 2) then %>
<%=rsarray(1,i+2)%>
<% end if %> |
|
<% if (numrows >= i + 1) then %><% end if %> |
<% if (numrows >= i + 2) then %><% end if %> |
<%=rsarray(2,i)%> |
<% if (numrows >= i + 1) then %> <%=rsarray(2,i+1)%><% end if %> |
<% if (numrows >= i + 2) then %> <%=rsarray(2,i+2)%><% end if %> |
"> |
<% if (numrows >= i + 1) then %>"> <% end if %> |
<% if (numrows >= i + 2) then %>"> <% end if %> |
<% Next %>
|
|
|