覆盖自定义服务器控件内的 PreInit 页面
我有自定义服务器控件包含模板字段,当退出按钮单击字段消失时,我什么时候可以重新绑定控件(在其类内)假设 Control.Page.OnInit+=new EventHandler(rebind()) 不执行任何操作?
I have custom server control contains templatefield when an out button clicked the field disappear , when can I rebind the control (inside its class) supposed that Control.Page.OnInit+=new EventHandler(rebind()) doesn't do any things ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需重新绑定控件 OnLoad() 即可解决问题。
just rebind the control OnLoad() will solve the problem.