本文介绍了如何在设计页面中禁用所需的字段验证器,并在特定事件的代码页中启用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
实际上我想在设计页面(.aspx)中禁用所需的字段验证器,我想在.cs页面的事件结束时启用相同的验证器是否可能
Actually i want to disable the required field validators in design page (.aspx) and i want to enable the same validators at the end of the event in .cs page is it possible
推荐答案
for that
in design add attribute
enabled=false
and from coding
yourid.enabled=true from enabling and false for disabling
这篇关于如何在设计页面中禁用所需的字段验证器,并在特定事件的代码页中启用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!