I need to trigger code on the server side to be called when a TextBox loses focus.
I know there is the onblur client side event, and that there is no LostFocus event, so how can I cause a postback to occur when my TextBox loses focus?
|
|
I need to trigger code on the server side to be called when a TextBox loses focus. I know there is the onblur client side event, and that there is no LostFocus event, so how can I cause a postback to occur when my TextBox loses focus?
|
||
|
|
|
|
Well, it's a fairly odd plan, but you can use 'onblur' on the client side to call 'form.submit();'. |
||
|
|
|
Why don't you use asp textbox with AutoPostBack property set to true.
|
||
|
|
|
I have found a blog which seems to give a pretty decent solution to this. It involves adding a custom event to a TextBox subclass, and registering a client script which calls the server-side event in the onblur JavaScript client event. The following is my implementation in VB:
|
||
|
|