This article explains how to make an ASP.NET nested GridView. There may be many ways to do this, but here is my code.
Your browser does not support iframes.
First, put gridview1 into asp design page then put another gridview2 inside previous gridview.
Here is code file
<form id="form1" runat="server">
<asp:GridView ID="GridView1"
runat="server"
DataKeyNames="CustomerID" AutoGenerateColumns="false"
OnRowDataBound="gv_RowDataBound" Width="80%"
AllowPaging="True" PageSize="20" …
28 April 2011
24 comments