openfiledialog

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Does anyone have an idea of how to implement an openfiledialog for an
asp.net webapplication?

thanks

B
 
client side <input type=file>. this will allow the user to select a file
and upload it. the only supported client side way.

server side, lots of sample of doing a server dir and displaying files.


if you need client side, then you will need to write an active/x control
that your users install, or if you can get them to give your site total
trust you can use the filesystem object in javascript.

-- bruce (sqlwork.com)
 
Back
Top