[thelist] ASP Problems again..

Julian Voelcker asp at tvw.net
Thu Oct 31 09:04:00 CST 2002


Could it be that you are missing some brackets..

      [ Page Number<%response.write iPage %> out of <% response.write intTotalPages%>]

should be..

      [ Page Number<%response.write(iPage) %> out of <% response.write(intTotalPages)%>]

To save time you could also use....

      [ Page Number<%= iPage %> out of <%= intTotalPages%>]

Also, I'm not sure if it makes much difference, but...

       <a href="showimage.asp?ipage=<% = (iPage+1) %>">

would be better as..

       <a href="showimage.asp?ipage=<%= (iPage+1) %>">
                                      ^ space removed

Hope that helps.


Cheers,

Julian Voelcker
Cirencester, United Kingdom





More information about the thelist mailing list