0

我无法让 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
4

1 回答 1

0

你可以在你的 RowDataBound 上试试这个

If e.Row.RowType = DataControlRowType.DataRow Then
dim toberemoved as string = DataBinder.Eval(e.Row.DataItem, "ColumName")
if toberemoved = "9999999" then
Regex.Replace(e.Row.Cells(1).Text, "</?(a|A).*?>", "")
//Morestuff here
End If
End If

请记住将 ColumName 替换为列的实际名称

*未测试从内存构建。

于 2013-01-02T22:06:13.277 回答