asp.netRequiredfieldValidator错误消息字体颜色
在我的文本框网页上,我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够像这样覆盖它:
You should be able to override it like this: