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

How to improve the cache performance? : .NET Architecture

0 Answers  


What are the new features of .net 2.0?

0 Answers  


12. Types of polymorphisem[Run and Design Exp.]

0 Answers   PCS,


Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?

2 Answers  


How can we integrate atlas with web services?

0 Answers  






Explain the race around condition? : Dot net architecture

0 Answers  


What is the mesi? : .NET Architecture

0 Answers  


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 on hardware that converts the ascii value to binary? : .NET Architecture

0 Answers  


When should you use Abstract Class vs Interface while programming? Give 1 Example

3 Answers   CSS Corp, Hexaware, T3 Softwares,


What is a clickonce application?

0 Answers  


Is dim fs as filestreamobject is a managed code? : Dot net architecture

0 Answers  


Explain what does the term "green architecture" mean? : Dot net architecture

0 Answers  


Categories