| Title |
Link |
|
<%
SQLAccountsR = "SELECT * FROM Forces_SidenavBanners WHERE Deleted = 'no' ORDER BY LinkID DESC"
Set RSAccountsR= MyConn.Execute(SQLAccountsR)
if RSAccountsR.EOF then
response.write("| There are currently no sidenav banners. |
")
else
i = 0
while not RSAccountsR.EOF
%>
<%i= i + 1%>
<%if int(i)/2 = int(i)\2 then%>
<%else%>
<%end if%>
| <%=RSAccountsR("Title")%> |
" width="100" alt="" border="0">
<%=RSAccountsR("Link")%>
|
" onclick="if(!confirm('Are you sure you want to delete this record? It will be removed permanently!')) return false;">
|
<%
RSAccountsR.MoveNext
WEND
End If
RSAccountsR.Close
%>
| |
|
|