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

  1. #1

    Default Downloading a file

    I want my users to access my .aspx and hit a button to
    download a file. I tried using the a System.Net.Webclient
    object but instead of the file being downloaded to the
    users PC, its copied to the server???

    Any suggestions?

    TIA
    Steven Guest

  2. Similar Questions and Discussions

    1. Downloading file
      i want to click on a link which then displays a file on the cd in word, how can i make this file able to be downloaded on the users computer? i...
    2. File Downloading from Flash
      I am trying to implement a File Download in Flash but I don't know how. I know that can be done since in the Macromedia Exchange there is a...
    3. Downloading file(s) from CD
      How can I make a button which start a downloading of file or more from the CD the presentation is running from, into the local hard disk in a...
    4. Get file size without downloading
      On Wed, 10 Dec 2003, usef wrote: Hi, FTP or HTTP? Rgds Rus --
    5. Downloading a file from a CD
      Hi, Im using Director MX. On my CD, I want people to be able to click on an option that starts to download a video from my CD to the users...
  3. #2

    Default Re: Downloading a file

    Have you tried resonse.Redirect( URL of File )?

    "Steven" <sfuentes@helvetia-pr.com> wrote in message
    news:01f001c3552d$84334e30$a301280a@phx.gbl...
    > I want my users to access my .aspx and hit a button to
    > download a file. I tried using the a System.Net.Webclient
    > object but instead of the file being downloaded to the
    > users PC, its copied to the server???
    >
    > Any suggestions?
    >
    > TIA

    Matt Osborne Guest

  4. #3

    Default Re: Downloading a file

    Steven Fuentes spoke:
    > Matt:
    >
    > Thanks for responding!
    >
    > My users will be connecting to my site with thier notebooks.
    > Once validated, I need the webform application to read all files in
    > a folder on the server, and copy them to their notebook...
    Downloading more than one file in a single HTTP response requires a
    client side application in order to split up the response.

    Cheers,
    --
    Joerg Jooss
    [email]joerg.jooss@gmx.net[/email]
    Joerg Jooss Guest

  5. #4

    Default Downloading a File

    Hi, I'm using Director MX and making an interactive CD. How do make a link that downloads a file off the CD to the users hardrive? If you could give me a step by step process I would appreciate it because I'm not real good at Lingo and I'm just a beginner on Director. Thanks for you help!


    mpz111 webforumsuser@macromedia.com Guest

  6. #5

    Default Re: Downloading a File

    Hi,

    You can use a third party Xtra such as BuddyAPI to save files from the CD to
    the user's harddrive. BuddyAPI's baCopyFile command can achieve this
    function.
    ex. OK = baCopyFile("d:\data\student.txt" , "c:\data\backup\student.dat" ,
    "IfNewer" )
    You can download the Xtra at [url]http://www.buddyapi.com[/url]

    Regards,
    Gren Foronda


    "mpz111" <webforumsuser@macromedia.com> wrote in message
    news:bp037f$oe2$1@forums.macromedia.com...
    > Hi, I'm using Director MX and making an interactive CD. How do make a
    link that downloads a file off the CD to the users hardrive? If you could
    give me a step by step process I would appreciate it because I'm not real
    good at Lingo and I'm just a beginner on Director. Thanks for you help!
    >
    >


    Gren Foronda Guest

  7. #6

    Default Re: Downloading a File

    How exaclty do I write the lingo for this Xtra?



    mpz111 webforumsuser@macromedia.com 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