i'm using ftp to transfer all of my html, asp file to the server. Now what i would like to do is to write an asp file using vbscript or aspx or vb.net to have a webpage that basically read all of the file in that directory and give me the name, size, date of each file like this
Name size date
file1 7kb 07/25/2006
file2...........................................................
coudl anyone help me with this ty

reading file size, date, name from the internet
forrestcupp
is this not the similar question to your previous thread
Well this is easily done again in ASP.NET
assuming if the files are local then you just use the same methods I described in your previous thread:
http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=563014&SiteID=1
When needing to write the ouput to the screen, simply do a Response.Write("info here");
hope it helps