如何以编程方式分配事件处理程序
我正在使用 DevExpress AspxGridView,并尝试在 Page_Load 中以编程方式分配 OnCustomCallBack。但没有成功。这是我的代码,
aspxGrid1.attributes.add("OnCustomCallback","MyServerSideFunctionName")
I'm using DevExpress AspxGridView and I'm trying to assign OnCustomCallBack programatically in the Page_Load. but it didn't work. this is my code,
aspxGrid1.attributes.add("OnCustomCallback","MyServerSideFunctionName")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是这个意思吗?
(我没有 DevExpress 控件,因此您必须调整委托名称。)
或者您想使用 Reflection 来实现吗?
Do you mean this?
(I have no DevExpress Controls so you have to adapt the delegates name.)
Or do you want to do it with Reflection?
在 VB.Net 中,您可以按以下方式附加处理程序:
In VB.Net, you would attach a handler in this fashion: