mousebear
04-09-2006, 07:40 PM
I just went live with my website (still in development, but wanted to see what kind of problems might be popping up from the real server). I have a critical .ASP page that works fine locally, but generates an error on the server. Other .ASP files (like the navigation menu) load fine (in IE6 at least) in both locations.
The problem page retrieves a list of the files in a subdirectory, sorts them in an included .ASP file, then displays them in a simple, linkable list on the main page. Like I say, works like a charm locally. It has the following vbscript in it:
<!--#include file ="../../archiveEngine.asp"-->
<%
Dim rsFSO
Set rsFSO = kc_fsoFiles("downloads\", "ExcludeStr")
While Not rsFSO.EOF
rsFSOname = rsFSO("Name").Value
rsFSOtrunc = left(rsFSOname, inStrRev(rsFSOname, ".") - 1)
%>
<tr>
<td align="left" class="downloadLink"><a href='downloads/<%= rsFSOname %>'><%= rsFSOtrunc %></td>
</tr>
<%
rsFso.MoveNext()
Wend
rsFSO.close()
Set rsFSO = Nothing
%>
The code in the included file is longer, so I won't try to put it in here, unless you need me to.
The main page is: http://clubs.ca4h.org/sanmateo/pacifica/archives/genMinutes/genMinutes.asp
The included file is:
http://clubs.ca4h.org/sanmateo/pacifica/archiveEngine.asp
But I don't see any code for this file with IE6's VIEW SOURCE.
The webmaster of the server site states the following:
"The server is equipped with ASP and ASP.NET server-side scripting using javascript or VBScript.
The server is equipped with PHP version 5 service-side scripting.
A MySQL database can be provided upon request."
Finding and displaying these files is very important for us. Any help would be greatly appreciated. Thanks in advance
The problem page retrieves a list of the files in a subdirectory, sorts them in an included .ASP file, then displays them in a simple, linkable list on the main page. Like I say, works like a charm locally. It has the following vbscript in it:
<!--#include file ="../../archiveEngine.asp"-->
<%
Dim rsFSO
Set rsFSO = kc_fsoFiles("downloads\", "ExcludeStr")
While Not rsFSO.EOF
rsFSOname = rsFSO("Name").Value
rsFSOtrunc = left(rsFSOname, inStrRev(rsFSOname, ".") - 1)
%>
<tr>
<td align="left" class="downloadLink"><a href='downloads/<%= rsFSOname %>'><%= rsFSOtrunc %></td>
</tr>
<%
rsFso.MoveNext()
Wend
rsFSO.close()
Set rsFSO = Nothing
%>
The code in the included file is longer, so I won't try to put it in here, unless you need me to.
The main page is: http://clubs.ca4h.org/sanmateo/pacifica/archives/genMinutes/genMinutes.asp
The included file is:
http://clubs.ca4h.org/sanmateo/pacifica/archiveEngine.asp
But I don't see any code for this file with IE6's VIEW SOURCE.
The webmaster of the server site states the following:
"The server is equipped with ASP and ASP.NET server-side scripting using javascript or VBScript.
The server is equipped with PHP version 5 service-side scripting.
A MySQL database can be provided upon request."
Finding and displaying these files is very important for us. Any help would be greatly appreciated. Thanks in advance