Hallo Leute,

ich habe folgenden Code:

<% dim objFS, objDatei, objOrdner, strOrdner
strOrdner = Server.MapPath("./BankTransferTool")
set objFS = Server.CreateObject("scripting.FileSystemObject")
Set objOrdner = objFS.GetFolder(strOrdner)
%>

<table border="1" bordercolor="#000120" width="90%" cellspacing="2"
cellpadding="3" align="center">
<thead>
<tr>
<th bgcolor=#f0f8ff align=center><font size="2"><b>Filename</th>
<th bgcolor=#f0f8ff align=center><font size="2"><b>Size</th>
<th bgcolor=#f0f8ff align=center><font size="2"><b>Filetype</th>
<th bgcolor=#f0f8ff align=center><font size="2"><b>Last Modified On</b></th>
</tr>
</thead>

<% For Each objDatei In objOrdner.Files %>
<tr>
<% 
Response.Write "<td align=center><font size=2> <a href=" &
"./BankTransferTool/" & objDatei.Name & ">" & objDatei.Name & "</a> </td>"
Response.Write "<td align=center><font size=2>" & objDatei.Size & "
Bytes</td>"
Response.Write "<td align=center><font size=2>" & objDatei.Type & "</td>"
Response.Write "<td align=center><font size=2>" & objDatei.DateLastModified
& "</td>"
Response.Write "</tr>"

Next %>

Jetzt möchte ich das Ganze nach Datum (also Last Modified) absteigend
sortieren.. wie mache ich das am Blödsten? Stehe auf'm Schlauch..

Danke
Babsi

~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~
Ein flexibles CMS für lau?
ATTACK! Download Intrexx CRM-Studio Now!   http://www.intrexx.com
_______________________________________________
Advanced.asp mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/advanced.asp

Antwort per Email an