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 the race around condition? : Dot net architecture
Explain the number or character entered through keyboard gets converted to equivalent ascii code & it get stored on ram in the binary form. What is the exact procedure. : Dot net architecture
Explain the components required to develop mobile applications with .net mobile? : Microsoft dot net mobile
What is the numeric attribute of the textbox control in .net mobile? : Microsoft dot net mobile
what is diffrent beatween localprinter and networkprinter
What do you know about machine.config file ?
question related to table havi colspan and row span
What is the purpose of cache? : Dot net architecture
What is .net mobile lists. Explain with an example? : Microsoft dot net mobile
What is the difference between an event and a delegate?
Does .NET runtime offer Deterministic Destruction or not?
what are login controls?
So what exactly is the configuration file for then?
.Net Frame work arch?
Different types of authentication modes in .net framework ?