<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head id="Head1" runat="server">
<title>Untitled Page</title>
<style type="text/css">
html, body, form { width:100%; height:100%; overflow:hidden; margin:0; padding:0}
</style>
</
head>
<
body>
<form id="form1" runat="server">
<
asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<
table width="100%" height="50%" border="0" cellpadding="0" cellspacing="0">
<
tr width="100%" height="100%"><td width="100%" height="100%">
<
telerik:RadGrid
ID="RadGrid1" runat="server" DataSourceID="AccessDataSource1"
GridLines="None" Skin="Office2007" Height="100%" Width="100%">
<MasterTableView TableLayout="Fixed" />
<ClientSettings>
<Scrolling AllowScroll="True" UseStaticHeaders="True" />
</ClientSettings>
</
telerik:RadGrid>
</
td></tr></table>
<
telerik:RadGrid
ID="RadGrid2" runat="server" DataSourceID="AccessDataSource1"
GridLines="None" Skin="Office2007" Height="50%" Width="100%">
<MasterTableView TableLayout="Fixed" />
<ClientSettings>
<Scrolling AllowScroll="True" UseStaticHeaders="True" />
</ClientSettings>
</
telerik:RadGrid>
<asp:AccessDataSource ID="AccessDataSource1" DataFile="~/App_Data/Nwind.mdb"
SelectCommand="SELECT CustomerID, CompanyName, ContactName, ContactTitle, Address, PostalCode FROM Customers"
runat="server" />
</form>
</
body>
</
html>