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
what is the difference between master page and content page?
Is .net easier than java?
How does .net remoting work?
What is the use of TPL DATAFLOW?
what is the method while we are using adapter and dataset ?
Explain hard disk and what is its purpose? : .NET Architecture
Why the config file might not be writable
So what exactly is the configuration file for then?
Define a managed code? : Dot net architecture
5. Wcf- Session Managment
What is an asssembly qualified name? Is it a filename? How is it different?
What is .net mobile automatic paging? : Microsoft dot net mobile
How to prevent my .NET DLL to be decompiled?
What's new in the .net 2.0 class library?
what is the difference between running an application with and without debugger?