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

  1. #1

    Default without postback?

    Hi,
    I've got a textbox and a label.When the user enter a character to the
    textbox I'll display the number of character in the textbox in the label.
    How can I do that without any postback?
    Thanks in advance.
    Salim


    Salim Afþar Guest

  2. Similar Questions and Discussions

    1. Usercontrol always needs a second postback
      I folks, I have a simple page with a user control dropped on it, a textbox and a submit button. That usercontrol should display the value entered...
    2. Datagrid Postback
      Hello all, I have a Datagrid on a page. 1 column is a template column with a checkbox (unbound). The rest of the columns are databound that are...
    3. PostBack Concept
      I want to know if the PostBack concept applies to HTML web-based forms, regardless of what programming technologies we use: For example, ASP,...
    4. Postback
      Greets, Is it possible to disable the postback for a button control if I inherit from it? Thanks, Shawn
    5. How to see what caused PostBack
      I have few buttons on a page. In Page_Load I would like to determine which one caused post back. How to do?
  3. #2

    Default Re: without postback?

    Goto a site which offers a web sms service and copy the javascript
    functionality from there.



    "Salim Afþar" <safsar@luckyeye.com> wrote in message
    news:O6gTnUETDHA.2020@TK2MSFTNGP11.phx.gbl...
    > Hi,
    > I've got a textbox and a label.When the user enter a character to the
    > textbox I'll display the number of character in the textbox in the label.
    > How can I do that without any postback?
    > Thanks in advance.
    > Salim
    >

    Aemca Guest

  4. #3

    Default Re: without postback?

    Can you please send some JavaScript onKeyDown code
    Thanks

    "Mark" <mark@yahoo.comN0SPAM> wrote in message
    news:bf5s1l$drk$1@lust.ihug.co.nz...
    > I don't believe this is possible without doing a postback to the server.
    > Using Javascript you may be able to capture the onKeyDown (Or similiar
    > event) and the check the length of the string in the required textbox.
    >
    > If you need any more info, give me a yell :)
    >
    > Cheers
    > MarkusJ
    >
    >

    Salim Afþar Guest

  5. #4

    Default Re: without postback?

    Thanks again.I made it.
    Salim
    "Salim Afþar" <safsar@luckyeye.com> wrote in message
    news:uQokwKFTDHA.304@tk2msftngp13.phx.gbl...
    > Can you please send some JavaScript onKeyDown code
    > Thanks
    >
    > "Mark" <mark@yahoo.comN0SPAM> wrote in message
    > news:bf5s1l$drk$1@lust.ihug.co.nz...
    > > I don't believe this is possible without doing a postback to the server.
    > > Using Javascript you may be able to capture the onKeyDown (Or similiar
    > > event) and the check the length of the string in the required textbox.
    > >
    > > If you need any more info, give me a yell :)
    > >
    > > Cheers
    > > MarkusJ
    > >
    > >
    >
    >

    Salim Afþar Guest

  6. #5

    Default Re: without postback?

    I don't believe this is possible without doing a postback to the server.
    Using Javascript you may be able to capture the onKeyDown (Or similiar
    event) and the check the length of the string in the required textbox.

    If you need any more info, give me a yell :)

    Cheers
    MarkusJ


    Mark 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