使用其他 CSS 类时禁用 ASP.NET 4.0 中的链接按钮

发布于 2025-01-04 03:36:11 字数 585 浏览 0 评论 0原文

我会尝试解释我的问题。

我有一个带有 CssClass 的链接按钮:

<asp:LinkButton 
    ID="test"
    Text="delete"
    CssClass="button blue"
    OnClick="DeleteMessage_Click"
    runat="server" />

当我禁用此链接按钮时,该类将呈现如下:

<a id="test" class="aspNetDisabled button blue">delete</a>

aspNetDisabled 是第一个类。现在我想让按钮看起来灰色,但在 aspNetDisabled 样式之后是 button 样式和 blue 样式,因此按钮永远不会是灰色的。

是否可以在 button 样式和 blue 样式之后最后渲染 aspNetDisabled

I'll try to explain my problem.

I have this linkbutton with a CssClass:

<asp:LinkButton 
    ID="test"
    Text="delete"
    CssClass="button blue"
    OnClick="DeleteMessage_Click"
    runat="server" />

When I disable this linkbutton the class is rendered like this:

<a id="test" class="aspNetDisabled button blue">delete</a>

aspNetDisabled is the first class. Now I want to make the button look grey but after the aspNetDisabled style is the button style and the blue style so the button is never going to be grey.

Is it possible to render aspNetDisabled last, after the button style and the blue style?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓦然回首 2025-01-11 03:36:11

您是否尝试过这样的事情:

a.button
{
   color: gray !important;
}

只是出于好奇,如果您想让按钮变为灰色,那么蓝色类是做什么用的?

Have you tried something like this:

a.button
{
   color: gray !important;
}

Just out of curiosity, what is the blue class for, if you want to make the button gray?

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