从用户控件中隐藏 AutoGenerateRows?

发布于 2024-11-19 21:08:16 字数 229 浏览 2 评论 0原文

我有一个带有 DetailsView 的用户控件,其属性 AutoGenerateRows 设置为“true”。我的页面(asp.net 和 c# 代码)使用 SQLDataSource 作为其数据。通常,我希望所有行都显示在我的 WebForm 中,但是,有时我希望能够隐藏特定行。有什么方法可以做到这一点,还是我必须对我想要的每一行进行硬编码并将 autogeneraterows 设置为 false?

感谢帮助!谢谢大家!

I have a User Control with a DetailsView that has the property AutoGenerateRows set to 'true'. My pages (asp.net and c# code), use a SQLDataSource for its data. Typically I want all rows to show up in my WebForm, however, occasionally I want to be able to hide specific ones. Is there any way to do this or do I have to hardcode every row I want and set autogeneraterows to false?

Help is appreciated! Thanks everyone!

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

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

发布评论

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

评论(1

无所的.畏惧 2024-11-26 21:08:16

尝试绑定后,

 foreach (DetailsViewRow Row in MyDetailsView1.Rows)
        {
            if (Your Condition..)
            {
                Row.Visible = false;
            }
        }

您可以执行以下操作来检查您的值:

foreach (DetailsViewRow Row in MyDetailsView1.Rows)
            {
                if (Row.Cells[index of your column].Text=="")
                {
                    Row.Visible = false;
                }
            }

Try this After Binding

 foreach (DetailsViewRow Row in MyDetailsView1.Rows)
        {
            if (Your Condition..)
            {
                Row.Visible = false;
            }
        }

you could do this for checking your value:

foreach (DetailsViewRow Row in MyDetailsView1.Rows)
            {
                if (Row.Cells[index of your column].Text=="")
                {
                    Row.Visible = false;
                }
            }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文