更改 ASP.NET Web 窗体中 span 标记上的 CSS

发布于 2024-10-29 00:27:15 字数 301 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(2

神经大条 2024-11-05 00:27:15

你有没有尝试过:

collegeSpan.Attributes["class"] = "foo";

Have you tried:

collegeSpan.Attributes["class"] = "foo";
成熟的代价 2024-11-05 00:27:15

因为迟到的答复比根本没有答复要好,郑重声明:
如果您能够更改 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 :-)

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