如何将函数绑定到“Click”动态添加的 ImageButton 事件?
我对 Asp.net 完全陌生。
我目前正在开发一个通过 Visual Basic 编码的 asp.net 页面。
在该页面上,我有这些图像按钮,它们是根据页面检索的 SQL 数据动态生成的。
不幸的是,我无法弄清楚如何将单击功能绑定到每个按钮。
[Control Name].onClick = "Function Name()" 用于客户端脚本。
我需要绑定
Protected Sub Button_InsertNewTextBox_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button_InsertNewTextBox.Click
到动态分配的按钮。
我不知道怎么办。
有人可以帮忙吗?
I am completely new to Asp.net.
I am currently working on a asp.net page coded via Visual Basic
On the page I have these image buttons that are dynamically generated based on the SQL Data the page retrieves.
Unfortunately I could not figure out how to bind a click function to each of these buttons.
the [Control Name].onClick = "Function Name()" is for clientSide scripts.
and I need to bind
Protected Sub Button_InsertNewTextBox_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button_InsertNewTextBox.Click
to the dynamically allocated buttons.
I couldn't figure out how.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信在 Visual Basic 中 AddHandler 语句是你在追求什么
I believe in Visual Basic the AddHandler statement is what you're after