Hi,
I am trying to update my rating-label inside a listview using the click of a linkbutton inside the same listview. Since I do not know jQuery very well and I cant access controls inside a listview from codebehind I have been trying every way possible to do
this using an updatepanel.
HTML:
<ItemTemplate>
<tr>
<td>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true">
<ContentTemplate>
<div class="row list-group-item">
<div class="">
<a href="<%# "http://" + Eval("url") %>" class="list-group-item lnk-content col-xs-4"><%# Eval ...
Go to the complete details ...