English 中文(简体)
如何为每个数据库行环绕网格视图?
原标题:How to loop gridviews for each database row?

我正在开发一个 asp.net 网络表格应用程序, 该应用程序显示基于参数的不同网格视图上的一些信息。 第二个网格视图取决于第一个网格视图中的值( Salida 和 Llegada, 它们作为时间范围工作 ) 。 只有当第一个 GV 上显示的数据只有一行时才有效 。

这就是它是如何运作的:

"https://i.sstatic.net/EBPyW.jpg" alt="当前显示"/ >

但是,是否有办法对存储在数据库中的每行进行相同的网格视图循环?

"https://i.sstatic.net/6acBX.jpg" alt="劣色显示"/ >

或许我还没有考虑过 比较容易的选择

提前感谢。

最佳回答

Ok 它应该很简单, 首先坐好您的网格视图1, 只获取一个记录, 然后在填满您的网格视图 1 之后, 我假设您已经将 ID 设为数据键或曾经使用过的方法, 该行的索引应该是 0, 因为它总是只查看一行 。 获取您的 ID, 并获取您的数据, 然后将它绑在第二个网格视图 2 上 。

在 Gridgeview1_ page 事件之后, 您再次将数据绑定, 并使用上述相同方法获取下次记录的数据 。

问题回答

似乎有点笨拙, 但最简单的选择可能是将 GV1 和 GV2 添加到中继器中。 中继器的每一行基本上都是您的 GV1 的数据源 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签