What is the EventName property when I set up a ASP.NET checkbox control as an async postback trigger for an asp.net update panel?
|
|
|
|
|
|
|
I believe it is CheckedChanged. |
||
|
|
|
|
OnCheckedChanged is the event name. You can autogenerate the method by double clicking the checkbox in the UI, and based on the checkbox name it will generate the method which will most likely be:
|
|||
|
|
|
|
All you have to do is set AutoPostback to true and if your CheckBox is within the UpdatePanel you shouldnt have any problems
Then in the OnCheckedChanged function you can do whatever you need to do
|
|||
|
|
