Uploading Files - help please

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

  1. #1

    Default Uploading Files - help please

    When you use:

    <Input ID="ImageUpload" Type="File" visible="false" RunAt="Server">

    Is their any way you can make a starting value appear inside the
    browse textbox thing?

    I have a multi step form where the user can move back and forth
    through the completed steps. If the user has uploaded a file and moves
    to another step and then returns, the file they have chosen
    dissappears - I have tried:

    ImageUpload.Text="blah blah" which breaks

    and

    ImageUpload.Value="blah blah" which doesn't break but doesn't work.

    Does anyone know?

    Thanks in advance,

    Steve
    Steve Guest

  2. Similar Questions and Discussions

    1. Uploading files
      Hi, Can someone point me in the right direction for how I can upload a file to the server, and overwrite the existing file if there is one. ...
    2. Problems: uploading files have Chinese named files
      Hi everyone, I try to upload file by using asp.net, code like that: <script language="VB" runat="server"> Sub Upload(Source As Object, e As...
    3. [PHP] Uploading files via SSH
      Google for "Failed to scan directories. Error 6" (including quotes). First result is the ssh.com faq, which has a link to...
    4. Uploading files in C#
      why don't you examine the extension of the file being loaded. "Ian Walsh" <ianwalsh@hbosplc.com> wrote in message...
    5. Uploading files using FTP in ASP.NET
      If you follow this link, you'll find a few ftp samples: http://www.gotdotnet.com/community/usersamples/Default.aspx?query=ftp Here's one that...
  3. #2

    Default Re: Uploading Files - help please

    Hi

    No for security reasons this is read-only

    --
    Best Regards
    Vidar Petursson
    ==============================
    Microsoft Internet Client & Controls MVP
    ==============================
    "Steve" <stevefox2000@hotmail.com> wrote in message
    news:91545fb1.0307160857.14c75835@posting.google.c om...
    > When you use:
    >
    > <Input ID="ImageUpload" Type="File" visible="false" RunAt="Server">
    >
    > Is their any way you can make a starting value appear inside the
    > browse textbox thing?
    >
    > I have a multi step form where the user can move back and forth
    > through the completed steps. If the user has uploaded a file and moves
    > to another step and then returns, the file they have chosen
    > dissappears - I have tried:
    >
    > ImageUpload.Text="blah blah" which breaks
    >
    > and
    >
    > ImageUpload.Value="blah blah" which doesn't break but doesn't work.
    >
    > Does anyone know?
    >
    > Thanks in advance,
    >
    > Steve

    Vidar Petursson 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