|
<body>
<form
id="form1"
runat="server">
<div>
<asp:Repeater
ID="Repeater1"
runat="server"
>
<HeaderTemplate>
<table>
<tr>
<td
style="background-color:Gray;width:100px;"
>Id</td>
<td
style="background-color:Gray;width:100px;"
>Name</td>
<td
style="background-color:Gray;width:100px;"
>Age</td>
<td
style="background-color:Gray;width:100px;"
>Salary</td>
<td
style="background-color:Gray;width:100px;"
>Country</td>
<td
style="background-color:Gray;width:100px;"
>City</td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table>
<tr>
<td
style="background-color:#FFFFFF;width:100px;"
>
<asp:Label
ID="lblId"
runat="server"
Text='<%#Bind("id")%>'></asp:Label>
</td>
<td
style="background-color:#FFFFFF;width:100px;"
>
<asp:Label
ID="lblName"
runat="server"
Text='<%#Bind("name")%>'></asp:Label>
</td>
<td
style="background-color:#FFFFFF;width:100px;"
>
<asp:Label
ID="lblAge"
runat="server"
Text='<%#Bind("age")%>'></asp:Label>
<td
style="background-color:#FFFFFF;width:100px;"
>
<asp:Label
ID="lblSalary"
runat="server"
Text='<%#Bind("salary")%>'></asp:Label>
</td>
<td
style="background-color:#FFFFFF;width:100px;"
>
<asp:Label
ID="lblCountry"
runat="server"
Text='<%#Bind("country")%>'></asp:Label>
<td
style="background-color:#FFFFFF;width:100px;"
>
<asp:Label
ID="lblCity"
runat="server"
Text='<%#Bind("city")%>'></asp:Label>
</tr>
</table>
</ItemTemplate>
</asp:Repeater>
</div>
</form>
</body>
|