我目前正在使用 FormView 来显示使用我的数据库的表单。我在 formview 中添加了一个 customvalidator,并希望使用 c# 来验证用户输入。
由于文本框位于表单视图中,因此我习惯于使用以下代码来访问输入:
String phoneNum = (FormView1.FindControl("NumberTextBox") as TextBox).Text;
以及以下访问自定义验证器:
Control CustomValidator1 = FormView1.FindControl("CustomValidator1");
当我使用 customValidator1.isValid 时,我得到“不包含定义 isValid”
我想知道是否有办法使用 isValid 属性,并且我是否正确访问了 customvalidator?
谢谢:P