public string InsuredName
{
get;
set;
}
public string Card_No
{
get { return this.card_No; }
set { this.card_No = value; }
}
在这里我有两个属性, CardNo
只有一些需要InsuredNames
。当用户键入 InsuredName 然后我想去数据库并检查它是否有 Card_No 验证如果是,那么我想根据需要验证它,否则,我尝试了远程验证但是它不工作