Hello,
I have a repester like this that bind it with asp.net :
<ul class="menu">
<asp:Repeater ID="rpt_website" runat="server">
<ItemTemplate>
<li tabindex="1">
<img src='<%#Eval("Pic","Images/Portfolio/{0}") %>' alt='<%#Eval("Title")%>' width="200" height="120" class="AbsolPos" />
<span class="title WebTitle"><%#Eval("Title")%></span>
<div class="content">
<img src='<%#Eval("Pic","Images/Portfolio/{0}") %>' alt='<%#Eval("Title")%>' class="content AbsolPos" width="620" height="380"/>
<a href='<%#Eval("Link") %>' target="_blank" rel="nofollow" class="NFLinks" ><%#Eval("Link") %></a>
</div>
</li>
</ItemTemplate>
</asp:Repeater>
</ul>
now i want to bind this repeater with jquery ajax , and I use this link for bind my repeater with jquery ajax , but it does not work.
can anyone help me , please?