我无法让 text.contains("9999999") 语句返回 true。索引为 1 的列具有 ID#。这些 id 带有锚标记,如果 id 编号为 9999999,我需要删除这些标记。主 if 语句中的所有其他内容都可以正常工作。
If e.Row.RowType = DataControlRowType.DataRow Then
lDate = e.Row.Cells(8).Text
e.Row.Cells(7).Text = ConvertDate(e.Row.Cells(7).Text, True)
e.Row.Cells(8).Text = ConvertDate(e.Row.Cells(8).Text, True)
If e.Row.Cells(1).Text.Contains("9999999") = True Then
Regex.Replace(e.Row.Cells(1).Text, "</?(a|A).*?>", "")
Dim yoasd As String = e.Row.Cells(1).Text
End If
If e.Row.Cells(8).Text.Trim = "" Or lDate < lToday Then
e.Row.BackColor = Drawing.Color.BurlyWood
End If
End If
我也试过:
If e.Row.Cells(1).Text = "9999999"
If e.Row.Cells(1).Text.Trim = "9999999"
If e.Row.Cells(1).Text.Contains("9999999") Then