ASP.Net - Repeater模板和事件
只是一个随机问题,
在 ASP.Net 中,我有一个实现 ITemplate 的类。该类内部有一个 DropDownList。我想处理DropDownList的SelectedIndex_Changed事件。
我把事件处理放在哪里?是在页面级别吗?是在模板级别吗?
Just a random question,
In ASP.Net, I have a class that implements ITemplate. That class has a DropDownList inside of it. I want to process the SelectedIndex_Changed event of the DropDownList.
Where do I put the event processing? Is it at the page level? Is it at the template level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果下拉列表存在于模板中,而不是页面级别,那么您应该在模板中处理该事件。添加一些代码可能有助于澄清您的问题。
If the drop down exists in the template, and not at the page level, then you should handle the event in the template. Adding some code might help clarify your question.