I am working on a project that requires that I be able to maintain all the databases in a central location. However, I am not sure what I am doing wrong when I go through all the ASP files from the output folder to make sure that they are pointing to the correct database location. My server structure has all the ASP pages in the ROOT > PROJECT folder while the databases for the entire server reside in the ROOT > DATA folder. I would prefer not to have to be adding multiple locations where I grant write privileges to the folder just so I can keep the database there. But, the ASP pages created in ASP runner work fine other wise.
Am I missing something specific to prevent a "WritePagination(1,1)" display on the "project_list.asp" page instead of all of my records? Most of the ASP that I have done in the past has included custom coding in pages for dynamicly generated lists inside a webpage. This is the first time in a long time since I got ASPRUnner that I am making something that is requiring an edit interface that ASPRUnner 3.1 was able to create for me.
When I look at the "project_list.asp" code, I find that the instance of "Pagination" to be found here and I am not sure exactly what it means as my knowledge and understanding of ASP is severely limited.
<% if CheckSecurity("", "Search")=True then %>
<script language="JavaScript">WritePagination(<%=mypage%>,<%=maxpages%>);</script>
<% end if %>
In the "project_dbconnection.asp" file in the include folder, I have updated the connection parameters to read "..\DATA\project.mdb" instead of the original "db\project.mdb."