DataTable dt=this.GetRepeatTableData("repeating1");

int count=dt.Rows.Count;
for(int x=0;x<count;x++)
{
string Personnes=dt.Rows[x][0].ToString();//第一行第一列
string Passport_No=dt.Rows[x][1].ToString();//第一行第二列
if (Personnes != "")
{

if (Passport_No == "")
{
this.G2Page.alert("人员不能为空");
return false;
}

}

}

相关文章:

  • 2022-12-23
  • 2021-05-22
  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
  • 2021-08-22
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-22
相关资源
相似解决方案