asp:ImageButton 渲染什么 html?

发布于 2024-10-16 07:29:51 字数 66 浏览 4 评论 0原文

如果您有任何资源链接,该资源显示一个漂亮的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最丧也最甜 2024-10-23 07:29:51

我的渲染如下:(链接回数据库的规则切换的图像)

<input type="image" style="border-width: 0px;" alt="Enable Rule Toggle" src="img/slider_on.png" title="Click to disable this rule" id="ctl00_ContentPlaceHolderPage_name_ctrl0_EnabledToggle" name="ctl00$ContentPlaceHolderPage$name$ctrl0$EnabledToggle">

但请注意,演示按钮实际“onClick”的代码未显示。这是在页面其他地方生成的。非常重要的是,“按钮”类元素实际上具有单击事件。

Mine renders like this: (image for a rule toggle that links back to the database)

<input type="image" style="border-width: 0px;" alt="Enable Rule Toggle" src="img/slider_on.png" title="Click to disable this rule" id="ctl00_ContentPlaceHolderPage_name_ctrl0_EnabledToggle" name="ctl00$ContentPlaceHolderPage$name$ctrl0$EnabledToggle">

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.

怂人 2024-10-23 07:29:51

asp:ImageButton 标记呈现“image”类型的 标记。或者图像输入,如果您愿意的话。

An asp:ImageButton tag renders an <input> tag of type "image". Or an imageinput, if you prefer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文