CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2000
    Posts
    8

    Dialog Box(FileOpen) in ASP

    Hello everyone.

    I have an application that requires user to choose a file from a directory, then system reads that file and sends e-mail otifications. How can I use something like FileOpen dialog box to capture the file name and path using ASP pages?

    Thank you for your attention.


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Dialog Box(FileOpen) in ASP

    if you want to let your user select files from the server you could use the Windows Scripting Host's FileSystemObject to create a list of directories and files in an HTML (or ASP) page.

    if you want to let the user select files from his workstation or his network surrroudings, you could use an ActiveX control that allows him to select a file or use the INPUT TYPE="File" HTML tag.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured