Is it possible to avoid the execution of LoadPostBackData
event while PostBack happens. If it possible, how to impl开发者_如何学Pythonement that.
Thanks
You can create your own control and not implement the IPostBackDataHandler
.
For a single page or control? You can always override the method, then not call the base method implementation, but that will have repercussions.
Just out of curiosity, why would you want to do that?
精彩评论