我从 asp.net 的工具箱中在表单上放置了一个按钮
我希望按钮的文本为 Add,其中只有 Add 中的 A 应该带有下划线显示。
我只想使用asp按钮..
我们可以使用 html 按钮,但在 asp.net 中呢?
谢谢
An asp.net button control is rendered as an input element in html, and you cannot style this like you are wanting. The simplest solution is to just use an html button but add the runat="server" attribute.
<button runat="server"><u>A</u>dd</button>
Alternatively, you can create a new version of an asp.net button which renders as the button tag. See this answer How can I use the button tag with ASP.NET?
如前所述,<asp:Button />
控件将标记呈现为<input type='submit' />
<input />
标签就是所谓的void元素,因此不能有内容。它必须始终在没有结束标记的情况下呈现。
为了实现你想要的,你可以听从Tim B James的建议。