How to write Lost focus method for asp.net text method? Please anybody have any idea to write this, share with me?
|
So I know everyone has shown the basic client side approach, and that is fine, but I wanted to at least show a solution for handling a specific client side event on the server. Lets take a look at the code, and go over it piece by piece. Since ASP.Net TextBox does not expose a server side event for OnBlur, you will have to do it manually. Fortunately this is pretty easy to achieve. Suppose you have this small bit of code in your .aspx page. You want to update a Label control server side whenever the TextBox loses focus.
ASP.Net has a built in client side function that gets called to trigger postbacks that takes two parameters:
You could just wireup the event in markup by adding the following attribute and value to your TextBox:
However, the framework has an easy way to generate this script for you server side. In your Page_Init method, simply add a call to
With standard server control events, the event wireup and invocation is handled automagically for you by implementing
In the end it isn't terribly difficult to simulate server side events if you don't mind digging into the framework a little. Hope this helps! Cheers, |
|||||||||
|
|
client side code, javascript, 'onblur' - something to google for examples. |
|||||||
|
|
If you want the server to do something after the textbox loses focus you can add AutoPostback="True" and, if you don't want the postback to reload the whole page, use an UpdatePanel:
The function TextBox1_TextChanged can then do something with the text (serverside). |
|||||||||||||
|
|
|||
|
|