asp.netRequiredfieldValidator错误消息字体颜色

发布于 2024-10-09 07:44:23 字数 344 浏览 0 评论 0原文

在我的文本框网页上,我有 requiredfieldvalidator 控件,当文本框为空时,它会显示错误消息。我可以使用 .cs 页面上的控件的前景色属性动态更改颜色 requiredFieldValidator1.Style.Add("颜色", "#0000FF");

我如何使用我尝试使用的 CSS 实现相同的效果

在哪里 。错误信息 { 颜色:#0000FF; 但

我仍然得到红色字体,并且我无法删除前景色属性(无法删除“红色”)

我不能只将颜色放入 aspx 页面本身,因为该页面在不同网站之间共享并且具有与其关联的样式取决于显示它的网站。

任何帮助表示赞赏。

On my webpage for a text box i have requiredfieldvalidator control which displays an error message when the textbox is empty. I can change the color using fore color property of the control dynamically on .cs page using
RequiredFieldValidator1.Style.Add("Color", "#0000FF");

how can i achieve the same using CSS i tried using

where
.ErrorMessage
{
color: #0000FF;
}

but i am still getting the font as red color and i cannot delete the forecolor property (cannot remove "red")

I cannot just put the color in the aspx page itself as this page is shared between different websites and has styles associated with it depening on the website displaying it.

Any help is appreciated.

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

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

发布评论

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

评论(1

明月夜 2024-10-16 07:44:23

您应该能够像这样覆盖它:

.validator {     
      color: pink !important; 
} 

You should be able to override it like this:

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