for the textbox if i want to allow only numbers.what ever
the characters u enter it should not take.which event u used?
Answer Posted / anjaan
Three events are triggered when a key is pressed and
released:
keydown
keypress
keyup
The keydown event occurs when the key is pressed, followed
immediately by the keypress event. Then the keyup event is
generated when the key is released.
In order to understand the difference between keydown and
keypress, it is useful to understand the difference between
a "character" and a "key". A "key" is a physical button on
the computer's keyboard while a "character" is a symbol
typed by pressing a button. In theory, the keydown and
keyup events represent keys being pressed or released,
while the keypress event represents a character being typed.
| Is This Answer Correct ? | 8 Yes | 10 No |
Post New Answer View All Answers
How server form post-back works?
What is the difference between .net and laravel?
Explain difference between panel and groupbox classes using .net?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
What's singleton activation mode in .net?
What is value type and refernce type in .net?
Can a dll be changed to an exe?
Explain why do we use the “using” statement?
What is interface and abstract class in .net?
Explain what is the difference between encrypting a password and applying a hashing?
Dynamic Fonts
Explain what is the difference between constants and read-only variables?
What is difference between system.string and system.stringbuilder classes?
What is boxing and un-boxing in .net?
How do you create threading in.net?