<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" |
DataSourceID="AccessDataSource1" DataKeyNames="ID" |
AllowSorting="True" Skin="" GroupingEnabled="False"> |
<MasterTableView DataSourceID="AccessDataSource1" CssClass="data2" > |
<NoRecordsTemplate> |
There are no items available. |
</NoRecordsTemplate> |
<ItemTemplate> |
<tr> |
<td> |
<asp:Label ID="IDLabel" runat="server" Text='<%# Eval("ID") %>' /> |
</td> |
<td> |
<asp:Label ID="FirstNameLabel" runat="server" Text='<%# Eval("FirstName") %>' /> |
</td> |
<td> |
<asp:Label ID="LastNameLabel" runat="server" Text='<%# Eval("LastName") %>' /> |
</td> |
<td> |
<asp:Label ID="CompanyLabel" runat="server" Text='<%# Eval("Company") %>' /> |
</td> |
</tr> |
</ItemTemplate> |
<PagerStyle /> |
</MasterTableView> |
</telerik:RadGrid> |