Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Which template must you provide, in order to display data
in a Repeater control?

Answer Posted / anilkumar

Example for better idea

<asp:Repeater id="Repeater1" runat="server">
<HeaderTemplate>
<table cellpadding="5" cellspacing="2" >
<tr bgcolor=Gray>
<td><b>CustomerName</b></td>
<td><b>Country</b></td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td><%#
DataBinder.Eval(Container.DataItem,"CustomerName") %></td>
<td><%# DataBinder.Eval(Container.DataItem,"Country")
%></td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr bgcolor="#ccccff">
<td><%#
DataBinder.Eval(Container.DataItem,"CustomerName") %></td>
<td><%# DataBinder.Eval(Container.DataItem,"Country")
%></td>
</tr>
</AlternatingItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where the assembly is stored in asp.net?

1064


Explain the Session state management options available with ASP.NET?

1086


What is webresource axd?

942


How can we call webservices in Banking Applications? and where we are using it?

2158


What is viewstate in asp net with example?

1030


We are using Jscriopt validations and at clint site javascript is not running that time validation would work? if yes then how it would behave?

1971


What is difference between cookies and cache?

1093


How can you make sure that web api returns json data only?

1037


What is data binding in asp net?

1139


What ports must be open for DCOM over a firewall? What is the purpose of Port 135?

2446


What are the authentication types in asp.net?

1117


What is event in asp.net?

1067


What does session_start () do?

1163


Explain difference between dataset and recordset?

1120


What are different methods of session maintenance in asp.net?

1118