asp:ImageButton 渲染什么 html?
如果您有任何资源链接,该资源显示一个漂亮的 t 图表,左侧带有 ASP 控件,右侧显示等效的 html,我将不胜感激。
If you have any links to a resource that shows a nice t-chart with asp controls on the left, and equivalent rendered html on the right, I would appreciate that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的渲染如下:(链接回数据库的规则切换的图像)
但请注意,演示按钮实际“onClick”的代码未显示。这是在页面其他地方生成的。非常重要的是,“按钮”类元素实际上具有单击事件。
Mine renders like this: (image for a rule toggle that links back to the database)
But notice that the code that demonstrates the actual "onClick" of the button is not shown. That's generated elsewhere in the page. Very important that a "button" class element actually has a click event.
asp:ImageButton 标记呈现“image”类型的
标记。或者图像输入,如果您愿意的话。
An asp:ImageButton tag renders an
<input>
tag of type "image". Or an imageinput, if you prefer.