If e.DataCol.Name = "身份证件号" Then If e.DataRow("年级") >= "8" Dim drs As DataRow If e.DataRow("身份证件号") IsNot Nothing drs = DataTables("生地报名库").sqlFind("left(报名号,2) = '" & e.DataRow("年级代码") & "' and 身份证号 = '" & e.DataRow("身份证件号") & "'" ) End If If drs Is Nothing Then drs = DataTables("生地报名库").sqlFind("级 = '" & e.DataRow("班级全称") & "' and 学校名称 = '" & e.DataRow("单位名称") & "' and 姓名 = '" & e.DataRow("姓名") & "'") End If If drs IsNot Nothing e.DataRow("生物_")= drs("生物") e.DataRow("地理_")= drs("地理") End If End If End If
|