how do create a repeater

Answers were Sorted based on User's Feedback



how do create a repeater ..

Answer / kalaikarthikaug18

by using repeater control in .net

Is This Answer Correct ?    1 Yes 0 No

how do create a repeater ..

Answer / anand k

Like this way also c=u can create Repeater

<asp:Repeater ID="Repeater1" runat="server">

<HeaderTemplate>
<table>
<tr><td>empid</td><td>empname</td></tr>

<ItemTemplate>
<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>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>

Is This Answer Correct ?    0 Yes 0 No

how do create a repeater ..

Answer / 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

More Dot Net AllOther Interview Questions

What is the mesi? : Dot net architecture

1 Answers  


What is the cli? Is it the same as the clr?

1 Answers  


Explain about cookie less session state? : .NET Architecture

1 Answers  


How resource files are used in .net?

1 Answers  


what is session management ?

3 Answers   Ness Technologies,


can Array contains different datatypes ?

5 Answers  


If I'm developing an application that must accomodate multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?

3 Answers   Hologic, Siebel,


The maximum report processing jobs limit configured by your system administrator has been reached.How I can Solve this problem when i using crystal report to load from my application.

3 Answers  


what are constructors and destructors

1 Answers   Six Sigma,


What is abstact class? in which scinario we can use abstact class?

4 Answers   iGate,


How can I write my own .NET host?

1 Answers   HCL,


Define a managed code? : Dot net architecture

1 Answers  


Categories