如何在服务器端为 C#/ASP.NET 中的图像控件添加单击事件
我在 VS2008 中添加了工具箱中的图像,并注意到服务器端没有 onclick 事件。
我如何添加一个?
I have added an image from toolbox in VS2008, and noticed that there isn't an onclick event in server side.
How do I add one on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
图像控件只是在网页上显示图像。 Image控件中没有onlick事件。
asp:ImageButton 控件,用于处理图像上的鼠标点击。
Image control is just to display an image on the Web page. There is no onlick event in Image control.
asp:ImageButton Control that handles mouse clicks on images .
使用 ImageButton 控件:
http://msdn.microsoft.com/en -us/library/system.web.ui.webcontrols.imagebutton.aspx
Use the ImageButton control:
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.imagebutton.aspx