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

  1. #1

    Default Concantenate entry

    Is it possible for a user to enter an ID like: "8400-134-3" and then I can
    concantenate on to the end of it, a "h.jpg"? Basically creating
    "8400-134-3h.jpg" that would then be passed to the server to do a file look up
    and transfer to the users hard drive..

    MtrMth Guest

  2. Similar Questions and Discussions

    1. cron entry
      Hi groups, I have to write a cron job which executes a program every 5 minutes.so i have edited my crontab file as */12 * * * * root run-parts...
    2. Any ideas on how to confirm data entry of an item post entry?
      Access 97 is being used. Sorry for the vague subject. The database is a frontend/backend if that makes a difference. There are 3 tables,...
    3. Calculation during dat entry
      There is a practical issue of the weather here: on a cloudy day, the lights may be needed much earlier. Anyway, this example show how to: -...
    4. field entry
      Hello, I want enter data into a field in filemaker but have it displayed as asterisks. I know that there are several plug-ins that will allow...
    5. How is the best way to valid an entry ?
      Hi, IŽd like to know if there is a pattern to valid some input controls. For example, IŽd like to know which is the best way to valid an...
  3. #2

    Default Re: Concantenate entry

    you didnt specify the language you are using. here is an ASP example.

    1) user fills out a form and submits it
    2) on the following page you do
    <% finalName = request.form("user_entry") & "h.jpg" %>

    to see the result just do <%= finalName %>

    nisav19 Guest

  4. #3

    Default Re: Concantenate entry

    Sorry about the omission. I know .asp will work. We are trying to do this using only html. I appreciate your help. Thanks
    MtrMth Guest

  5. #4

    Default Re: Concantenate entry

    If you want to process user input, you'll have to use something other than
    HTML. That's just life.
    The only thing you can do with form data with HTML only is send the form via
    email in a mailto: action, and even then, it doesn't always work depending
    on whether or not the user has a mail client installed, etc.

    "MtrMth" <webforumsuser@macromedia.com> wrote in message
    news:d6dedc$nbm$1@forums.macromedia.com...
    > Sorry about the omission. I know .asp will work. We are trying to do this
    > using only html. I appreciate your help. Thanks

    Lionstone Guest

  6. #5

    Default Re: Concantenate entry

    as above html wont cut it, but javascript will
    go to google and type in "javascript concatenate", first couple of sites show how to do it with strings and with forms. so that should be your answer
    nisav19 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