How to force submit on a specific INPUT TYPE object

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

  1. #1

    Default How to force submit on a specific INPUT TYPE object

    I have a form with two or more INPUT TYPE (image, submit, button) objects,
    how can I force the ENTER event to act on a specific object and not to the
    first ?

    --
    Marco Maroni


    Marco Maroni Guest

  2. Similar Questions and Discussions

    1. $_POST behavior from input=submit vs input-type=button
      Hello all, I have been trying to solve an annoying behavior with PHP (I think). Maybe some of you have encountered the same and have some ideas....
    2. Can You Force Fit Type
      I am trying to force fit type into an object and was wondering if there was a cleaner easier way to do this besides moving the bezier points. Ex. I...
    3. Possible to force ALL files created in a specific directory to includeg+w ?
      In the process of removing root privileges from developers, I did the following: groupadd develprs usermod -g develprs john usermod -g develprs...
    4. HowTo Send Uploaded File with INPUT Type file to Sql Server Image Data Type ?
      I have the following problem: I have the following form client side: <FORM.......> <FORM action="./WZUpload.asp" method="Post"...
    5. Force download to a specific directory
      FX Digital ... www.fx-digital.com wrote: Thankfully you can't do that. Can you imagine the problems that would cause if anyone had that much...
  3. #2

    Default Re: How to force submit on a specific INPUT TYPE object

    Marco,

    I'm not sure where you want to capture the enter event from.

    On my web site, [url]www.aboutfortunate.com[/url] I have some code to do just what
    you're asking from a text box. If it's not a text box that you need to
    capture the "Enter" event in then the code could be changed to act from any
    other object including the form.

    In my code library the title for the code you need is: Fire a button click
    from any text box when enter key is pressed

    It's category is "Web" and language "VB.Net"

    Feel free to email me if you have any questions about changing it for your
    needs.

    Sincerely,

    --
    S. Justin Gengo, MCP
    Web Developer

    Free code library at:
    [url]www.aboutfortunate.com[/url]

    "Out of chaos comes order."
    Nietzche
    "Marco Maroni" <mmaroni@yahoo.com> wrote in message
    news:OmmYGwQVDHA.216@TK2MSFTNGP11.phx.gbl...
    > I have a form with two or more INPUT TYPE (image, submit, button) objects,
    > how can I force the ENTER event to act on a specific object and not to the
    > first ?
    >
    > --
    > Marco Maroni
    >
    >

    S. Justin Gengo 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