PetertheImp
Technical User
Is there any way of ordering the responses put out of the following code
<%
Set MyDirectory=Server.CreateObject("Scripting.FileSystemObject"
Set MyFiles=MyDirectory.GetFolder(Server.MapPath("planning_rec/northern"
)
For each filefound in MyFiles.files
%>
<a href="planning_rec/northern/<% =filefound.Name %>">
<% =filefound.Name %>
</a> <br>
<%
Next
%>
<%
Set MyDirectory=Server.CreateObject("Scripting.FileSystemObject"
Set MyFiles=MyDirectory.GetFolder(Server.MapPath("planning_rec/northern"
For each filefound in MyFiles.files
%>
<a href="planning_rec/northern/<% =filefound.Name %>">
<% =filefound.Name %>
</a> <br>
<%
Next
%>