How to create a browse button

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default How to create a browse button

    Can you help me create a browse button with Dreamweaver MX
    u2bono Guest

  2. Similar Questions and Discussions

    1. Create a Browse to File Button
      I cannot for the life of me figure out how to do this. I upload a lot of images and it would be nice if I had that handy browse to file button to...
    2. 'Browse For File' Button??
      I've searched everywhere online, I've tried dozens of keywords in these forums, I've read all the file manipulation documenation, and I've found...
    3. Browse File Button
      Hi, I am wondering if anyone can help me sort out a problem I am having. What I am trying to do is create a button which has the same effect as a...
    4. Adding a Browse Button to a Form
      I am using Dreamweaver 3.0 and need to put a Browse button on a form so the user can attach local files and upload them to the client. Once I create...
    5. browse button
      Is there a way to replace the file browse button using a JPG? <input type=file name=filename>
  3. #2

    Default Re: How to create a browse button

    > Can you help me create a browse button with Dreamweaver MX

    Just add this to your HTML:

    <input type='file' name='myUploadField'>

    But note that this simply adds the browser button+field to your form's
    interface. To actually do something with the file that is selected, you will
    need some server-side program to accept the file and do something with it.

    -Darrel


    darrel 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