how to limit user input into the multiline text box????

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

  1. #1

    Default how to limit user input into the multiline text box????

    Hi all,

    Is anyone have an idea that limit message length input by user into
    textbox. I'hv tried the maxlength property by setting it to 150, but it
    seems like not working..,

    regards


    cw Guest

  2. Similar Questions and Discussions

    1. Text formatting - multiline text field?
      - Access datasebase field set to memo - Online Form has a multiline text field How can you see paragraphs on your website, because when you...
    2. dynamic text multiline
      I have text coming in via remoting. I can see the text, however it will not multiline for some reason. I have checked the height of the text box...
    3. limit input to numbers only?
      thanks alot! one more question: is it possible to outclude the delete button in a simple way? i don't want the inputz to be not defined.. thanks -d.
    4. limit input to numbers?
      is there any way to limit a input field to numbers so it wont take anything else? (even better: take nothing else except delete, but if the fields...
    5. write multiline text into ini / text-content / serialise
      Hi, I was trying to write a multiline text into an ini file. Which is ok so far until it comes to read back the text with CR. When reading the...
  3. #2

    Default Re: how to limit user input into the multiline text box????

    Provided your textbox's TextMode is set to SingleLine or Password,
    (MultiLine causes the control to be rendered as a textarea tag, where the
    maxlength is ignored), the maxlength should limit the number of characters
    allowed.

    --
    James J. Foster, DotNetCoders
    [url]http://www.dotnetcoders.com[/url]


    "cw" <cw_yeh@hotmail.com> wrote in message
    news:ugsefjJPDHA.3836@tk2msftngp13.phx.gbl...
    > Hi all,
    >
    > Is anyone have an idea that limit message length input by user into
    > textbox. I'hv tried the maxlength property by setting it to 150, but it
    > seems like not working..,
    >
    > regards
    >
    >

    James J. Foster 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