<tr><td>
<% for i = 1 to rs.PageCount %>
<a href="product.asp?subcategid=<%=strSubcategoryID%>&subcategoryName=<%=strSubcategoryName%>&pg=<%=i%>"><%=i%></a>
<%next%></td></tr>
this code works well and displays products and number of pages (underlined links to them). But how can I remove the link from the current page being display?
<% for i = 1 to rs.PageCount %>
<a href="product.asp?subcategid=<%=strSubcategoryID%>&subcategoryName=<%=strSubcategoryName%>&pg=<%=i%>"><%=i%></a>
<%next%></td></tr>
this code works well and displays products and number of pages (underlined links to them). But how can I remove the link from the current page being display?