how to apply bootstarp carousel to repeater

Nov 10 2017 2:10 AM
how to apply bootstarp carousel to repeater iam trying but caurosel not working plz help
 
<asp:Repeater runat="server" ID="ItemRepeater">
<ItemTemplate>
<div class="item <%# (Container.ItemIndex == 0 ? "active" : "") %>">
<div class="row">
<img class="img-responsive" src="<%# Eval("Imagepath").ToString() %>" alt="<%# Eval("Mname").ToString() %>">
</div> <%-- <div class="col-md-7 page-text">
<%# Eval("Mname").ToString() %>
<br />
</div>--%>
</div>
<div class="push"></div>
</div>
</ItemTemplate>
</asp:Repeater>
 

Answers (1)