GridView 外部复选框的必需字段验证器

发布于 2024-12-14 02:21:28 字数 137 浏览 2 评论 0 原文

我在 .aspx 页面中放置了几个选项卡,其中一个选项卡中有一个 GridView。现在我需要在 Gridview 下添加一个复选框并将其作为必填字段,即当尝试导航到其他选项卡时,它不应该允许并显示显示必填字段消息。我怎样才能做到这一点。

谢谢

I have couple of tabs placed in a .aspx page, in one of the tab i have a GridView. Now i need to add a checkbox under the Gridview and make it as a mandatory field i.e when try to navigate to other tabs it should not allow and show show a required field message. How can i achieve this.

Thanks

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

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

发布评论

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

评论(1

油焖大侠 2024-12-21 02:21:28

使用FindContrel。例如:

CheckBox cb = (CheckBox)row.FindControl("chkID");
if (cb != null && cb.Checked)
 {
   // Your code ..............
 }

use FindContrel. For example:

CheckBox cb = (CheckBox)row.FindControl("chkID");
if (cb != null && cb.Checked)
 {
   // Your code ..............
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文