获取用户控制页面中DataGrid的行

发布于 2024-09-01 14:56:14 字数 237 浏览 5 评论 0原文

我的问题与访问一页中的行并将条件放入另一页中有关。

我需要检查数据网格中是否有行。 DataGrid 位于 .aspx 页面中。基于此检查,我需要在 .ascx 页面中写入一个条件。

检查条件的.ascx链接到.aspx页面。这意味着UserControl1.ascx是注册到Default.aspx页面

我正在使用VS 2003

请建议

谢谢

My Question is related to access the rows in one page and putting conditions in another page.

I need to check whether a datagrid has row in it or not. DataGrid is in .aspx page. Based on this checking i need to write a condition in .ascx page.

the .ascx on which condition is checked is linked to .aspx page. Meaning that UserControl1.ascx is Register with Default.aspx page

I am using VS 2003

Please advice

Thanks

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

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

发布评论

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

评论(1

顾冷 2024-09-08 14:56:14

Session 中添加一个标志怎么样?例如,当您通过 aspx 渲染网格时,获取行数 MyDataTable.Rows.Count 并将其添加到会话中,例如 Session["MyDataTable.Rows.Count"] = MyDataTable.Rows.Count;从 ascx 中检查会话中的值,并让您的应用程序根据该值做出决定。

How about adding an flag in Session? For instance, when you render the grid over aspx, get the number of rows, MyDataTable.Rows.Count and add into the session, like Session["MyDataTable.Rows.Count"] = MyDataTable.Rows.Count; from the ascx, check the value in session, and let your app make a decision based upon that value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文