使用datalist下的control事件
我有一个数据列表控件,其中有一些控件(例如:按钮)。 我想在数据列表控件中的按钮的单击事件中编写一些代码。 但在代码隐藏页面中我看不到数据列表中的控件名称。 我怎么解决这个问题?
I have a datalist control which some controls(ex: button) are in it. I want to write some code into click event of button which is in the datalist control. But in the code behind page I can't see the name of controls into datalist. How can I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的事件附加到数据列表的 OnItemCreated 事件中的控件。
已编辑以添加示例
Attach your event to the controls in the OnItemCreated event of the datalist.
EDITED TO ADD SAMPLE
如果您不想向所有子事件添加处理程序,则可以将代码添加到 OnItemCommand。
If you don't want to add a handler to all the child events, you could instead add your code to the OnItemCommand.