You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OboutSuite/Grid/aspnet_master_detail_popula...

16 lines
503 B

<%@ Page Language="C#" %>
<%@ Register TagPrefix="obout" Namespace="Obout.Grid" Assembly="obout_Grid_NET" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.OleDb" %>
<script runat="server" type="text/C#">
void Page_load(object sender, EventArgs e)
{
PopulateGrid(grid3, "Order Details", 0);
PopulateGrid(grid2, "Orders", 0);
PopulateGrid(grid1, "Customers", 3);
}
void PopulateGrid(Grid tempGrid, string tableName, int limit)
{