DataBound GridView 上的正则表达式验证

发布于 2024-11-07 09:12:44 字数 137 浏览 1 评论 0原文

是否可以验证已经有界的网格视图?

A | B | C | D
2 | 3 | a | 5

例如,我想检查列内的数据是否是非字母。 在本例中,我想突出显示或表明第 2 列第 2 行中有一个字母。

Is it possible to validate an already bounded gridview?

A | B | C | D
2 | 3 | a | 5

For example, I wanted to check if the data inside the columns are non-letters.
In this case, I wanted to highlight or something to tell that there's a letter in Column 2 Row 2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪都笑了 2024-11-14 09:12:44

像这样的事情就可以解决问题。

Regex numeric = new Regex(@"^\d+$");

void GridView_RowDataBound(Object sender, GridViewRowEventArgs e) {
    // check out all cells in the current row
    foreach(var cell in e.Row.Cells) {
        // do some validation thingy
        if(!numeric.Match(cell.Text).Success) {
             cell.CssClass = "error"; // put error class on the cell
        }
    }
}

Something like this would do the trick.

Regex numeric = new Regex(@"^\d+$");

void GridView_RowDataBound(Object sender, GridViewRowEventArgs e) {
    // check out all cells in the current row
    foreach(var cell in e.Row.Cells) {
        // do some validation thingy
        if(!numeric.Match(cell.Text).Success) {
             cell.CssClass = "error"; // put error class on the cell
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文