更改 ASP.NET Web 窗体中 span 标记上的 CSS
我正在尝试使用 C# 更改 span
标记的 CSS,但我无法这样做。我尝试为其提供一种 HTMLGenericControl
类型,但无法在 IntelliSense 中弹出 CssClass
标记。
<span id="collegeSpan" runat="server" class="college">other code here</span>
I am trying to change the CSS for a span
tag using C# but I am unable to do so. I have tried to give it a type of HTMLGenericControl
but cannot get the CssClass
tag to popup in IntelliSense.
<span id="collegeSpan" runat="server" class="college">other code here</span>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有没有尝试过:
Have you tried:
因为迟到的答复比根本没有答复要好,郑重声明:
如果您能够更改 HTML/ASCX;使用 asp:Label-control 而不是 span。标签控件作为跨度呈现到页面,但它有一些优点,包括更改“CssClass”属性的可能性:-)
Because a late answer is better then no answer at all, for the record:
If you're able to alter the HTML/ASCX; use the asp:Label-control instead of a span. Label-controls are rendered to the page as a span, but it has some advantages, including the possibility to alter the "CssClass"-property :-)