I need to download...

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default I need to download...

    OK I need some help and/or opinions.

    I'm running an ASP.Net 1.1 app on a Windows 2000 Web Server.

    I want to allow a User to browse through a collection of documents,
    images, etc that are stored in a SQL Server 2000 database. During the
    browse the user will select any/all documents (db records) via
    checkboxes. These selected image records are to be downloaded to the
    user's remote client (or some other remote folder) and saved to disk -
    the user specifies the destination folder via a BrowseForFolder dialog
    box.

    I would like the files to be created, and downloaded, separately (one
    after another without the need for further user intervention) once the
    user click the download button. All of the files will be saved to the
    same user-specified folder. I don't want the user to have to go
    through any login dialogs, open/save as dialogs, etc.

    To date I have all of the ASP browse functionality working and the
    user is able to specify the download destination folder when the
    download button is clicked.

    My question is: is it possible to meet the above download requirements
    and how do I get it to work? My few test attempts have failed and I
    assume that it's due to some security config??? (or maybe this idea
    just can't be done).

    Any help would be greatly appreciated! I've been looking out on the
    net for days with no success.

    TIA
    Glenn
    Glenn Owens Guest

  2. Similar Questions and Discussions

    1. Unable to download trial, download pulled?
      I've tried downloading the Adobe Contribute CS3 trial version for windows for a few days now, and I've already sent a message using the Adobe...
    2. cant download
      To start with, what exactly are you trying to download? The PS tryout version?
    3. MP3 download
      Do I use DW or Flash to put mp3 on the web. Sample and download?
    4. #25471 [Opn->Bgs]: The PHP Documentation download page does not show any download
      ID: 25471 Updated by: derick@php.net Reported By: mahesh dot chandrasekar at icici-infotech dot com -Status: ...
    5. #25471 [NEW]: The PHP Documentation download page does not show any download in Mozilla
      From: mahesh dot chandrasekar at icici-infotech dot com Operating system: All PHP version: Irrelevant PHP Bug Type: *General...
  3. #2

    Default Re: I need to download...

    Glenn Owens wrote:
    > OK I need some help and/or opinions.
    >
    > I'm running an ASP.Net 1.1 app on a Windows 2000 Web Server.
    >
    > I want to allow a User to browse through a collection of documents,
    > images, etc that are stored in a SQL Server 2000 database. During the
    > browse the user will select any/all documents (db records) via
    > checkboxes. These selected image records are to be downloaded to the
    > user's remote client (or some other remote folder) and saved to disk -
    > the user specifies the destination folder via a BrowseForFolder dialog
    > box.
    >
    > I would like the files to be created, and downloaded, separately (one
    > after another without the need for further user intervention) once the
    > user click the download button. All of the files will be saved to the
    > same user-specified folder. I don't want the user to have to go
    > through any login dialogs, open/save as dialogs, etc.
    >
    > To date I have all of the ASP browse functionality working and the
    > user is able to specify the download destination folder when the
    > download button is clicked.
    >
    > My question is: is it possible to meet the above download requirements
    > and how do I get it to work? My few test attempts have failed and I
    > assume that it's due to some security config??? (or maybe this idea
    > just can't be done).
    >
    > Any help would be greatly appreciated! I've been looking out on the
    > net for days with no success.
    The problematic requirement IMHO is
    > I would like the files to be created, and downloaded, separately (one
    > after another without the need for further user intervention) once the
    > user click the download button.
    That's impossible to do in HTTP's request/response model without a
    specialized client that tracks all downloaded files and issues a new request
    after a successful download. You could deliver a ZIP package containing all
    files though.

    Also note that open/save dialogs are browser and configuration specific.

    Cheers,

    --
    Joerg Jooss
    [url]www.joergjooss.de[/url]
    [email]news@joergjooss.de[/email]


    Joerg Jooss Guest

  4. #3

    Default RE: I need to download...

    i agree, i just can't see it happening without a client app

    "Glenn Owens" wrote:
    > OK I need some help and/or opinions.
    >
    > I'm running an ASP.Net 1.1 app on a Windows 2000 Web Server.
    >
    > I want to allow a User to browse through a collection of documents,
    > images, etc that are stored in a SQL Server 2000 database. During the
    > browse the user will select any/all documents (db records) via
    > checkboxes. These selected image records are to be downloaded to the
    > user's remote client (or some other remote folder) and saved to disk -
    > the user specifies the destination folder via a BrowseForFolder dialog
    > box.
    >
    > I would like the files to be created, and downloaded, separately (one
    > after another without the need for further user intervention) once the
    > user click the download button. All of the files will be saved to the
    > same user-specified folder. I don't want the user to have to go
    > through any login dialogs, open/save as dialogs, etc.
    >
    > To date I have all of the ASP browse functionality working and the
    > user is able to specify the download destination folder when the
    > download button is clicked.
    >
    > My question is: is it possible to meet the above download requirements
    > and how do I get it to work? My few test attempts have failed and I
    > assume that it's due to some security config??? (or maybe this idea
    > just can't be done).
    >
    > Any help would be greatly appreciated! I've been looking out on the
    > net for days with no success.
    >
    > TIA
    > Glenn
    >
    MohammadSH Guest

  5. #4

    Default Re: I need to download...

    Not to beat a dead horse, but that requirement "..I don't want the user to
    have to go
    through any login dialogs, open/save as dialogs, etc." should be a
    deal-breaker.

    Basically, you're saying that you want to be able to download arbitrary
    files to a client
    machine. (I realize in *your* scenario that's not the intent, but from an
    application
    perspective, that's the scenario.) Luckily for all of us, no commercial
    browsers would
    allow that without at least minimal user interaction. If you package the
    files together
    (ZIP'ed or similar), you can eliminate all but one Open/Save As dialog, but
    you won't
    be able to remove them entirely.

    Dan Kahler


    "Glenn Owens" <gowens@nixonpeabody.com> wrote in message
    news:bc4291aa.0410150912.9033484@posting.google.co m...
    > OK I need some help and/or opinions.
    >
    > I'm running an ASP.Net 1.1 app on a Windows 2000 Web Server.
    >
    > I want to allow a User to browse through a collection of documents,
    > images, etc that are stored in a SQL Server 2000 database. During the
    > browse the user will select any/all documents (db records) via
    > checkboxes. These selected image records are to be downloaded to the
    > user's remote client (or some other remote folder) and saved to disk -
    > the user specifies the destination folder via a BrowseForFolder dialog
    > box.
    >
    > I would like the files to be created, and downloaded, separately (one
    > after another without the need for further user intervention) once the
    > user click the download button. All of the files will be saved to the
    > same user-specified folder. I don't want the user to have to go
    > through any login dialogs, open/save as dialogs, etc.
    >
    > To date I have all of the ASP browse functionality working and the
    > user is able to specify the download destination folder when the
    > download button is clicked.
    >
    > My question is: is it possible to meet the above download requirements
    > and how do I get it to work? My few test attempts have failed and I
    > assume that it's due to some security config??? (or maybe this idea
    > just can't be done).
    >
    > Any help would be greatly appreciated! I've been looking out on the
    > net for days with no success.
    >
    > TIA
    > Glenn

    Dan Kahler Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139