Answer Posted / nazrul.nazi
Repeater is a dataControl like GridView and Datalist but it
need more manipulation to create it.by the below code u
can design Repeater in tabular format and give data through
sqldatasource or coding. it all up to u.
<asp:Repeater ID="Repeater1" runat="server">
<HeaderTemplate>
<table>
<tr><td>empid</td><td>empname</td></tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table>
<tr>
<td>
<asp:Label ID="Label1" runat="server"
Text='<%#Eval(empid) %>'></asp:Label>
</td>
<td><asp:Label ID="Label2" runat="server"
Text='<%#Eval(empid) %>'></asp:Label></td>
</tr>
</table>
</ItemTemplate>
</asp:Repeater>
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain .net mobile input controls? : Microsoft dot net mobile
How to improve the cache performance? : Dot net architecture
What is boxing and unboxing? Does it occure automaatically or you need to write code to box and unbox?
How can I create a application?
Define pipelining? : Dot net architecture
what are login controls?
What other than biginteger has been introduced in system.numerics namespace?
Explain the Lapsed Listener problem in .net
What is .net mobile automatic paging? : Microsoft dot net mobile
what is tracing? Where it used?
How do I write to the application configuration file at runtime?
What is a service contract, operation contract and data contract?
What is .net transaction?
Explain the five stages in a dlx pipeline? : Dot net architecture
Explain about continuable exceptions?