In winfrom applications i can have
textbox1.keydown
event, but i want to achieve same thing in webform (asp.net), so how can i do that? I need
In Win Forms you use running machine and interact with it, as you write smth keydown
event is fired, but in web forms, once the client side files are sent from server to multiple clients (for ex. stackoverflow.com and its users) no server side event can be fired without javascript. To achieve your goal you I advice you to catch keyUp event in JS and send data by Callback then return data needed from server to client back and handle that data in JS.
Second Way is to protected void TextBox1_**TextChanged**(object sender, EventArgs e)
use this event, but it will refresh the page on every key up.