突出显示提交控件
有没有办法改变在.net中提交表单后未通过验证的控件的颜色?
谢谢
is there a way to change the color of the controls that didn't pass validation after submitting a form in .net?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有控件都有一个 BackColor 属性可用于更改背景颜色。
编辑:
看来您的问题实际上更多是关于如何执行表单验证。您应该仔细阅读 CausesValidaion 上的示例 属性并了解如何在订阅按钮的 Click 事件的方法中使用验证器。
All controls have a BackColor property that can be used to change the background color.
EDIT:
It seems you question is actually more about how to perform validation of your form. You should read through the examples on the CausesValidaion property and see how Validators are used in a method that subscribes to the button's Click event.