Customcontrol事件可以被覆盖吗?
我有一个 gridview 自定义控件,因为该分页事件已在单独的类库中定义。我可以在我使用自定义控件的 aspx.cs 中编写分页事件,而不是从单独的类文件调用该事件吗
I have a gridview customcontrol, for that paging event has defined in seperate class library. Can i write an paging event in my aspx.cs where i am using the customcontrol instead of calling that event from seperate class file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您公开自定义控件中的事件,则可以在代码隐藏中使用它们。
已经有点旧了,但它显示了如何做到这一点:
使用事件创建自定义 .NET Web 控件。
我还发现这些教程很有趣:开发自定义 ASP.NET 服务器控件。
If you expose events from your custom control you can use them in your codebehind yes.
Already a bit older but it shows how to do it:
Creating a Custom .NET Web Control With Events.
I also found these tutorials to be interesting: Developing Custom ASP.NET Server Controls.