Need to allow user to browse and select a file on my server...suggestions?

  • Thread starter Thread starter jef
  • Start date Start date
J

jef

I need the allow the user to browse a folder to select a file... was
wondering what might be the best way to do this. I only need to
present the list of files to the user.. nothing more than that....
 
I would probably start by calling
System.IO.Directory.GetFiles()
and then rendering the list of files (a Repeater control would work nicely).
 
Back
Top