I Change my old RadRotator by the new one and add the server site function ItemClick.
When I click on a radRotator item I receive this error:
Sys.ArgumentNullException: Value cannot bu null. Parameter: element
any suggestion?
When I click on a radRotator item I receive this error:
Sys.ArgumentNullException: Value cannot bu null. Parameter: element
<telerik:RadRotator ID="RadRotatorNews" runat="server" FramesToShow="1" RotatorType="AutomaticAdvance" ScrollDirection="Up" |
FrameDuration="8000" height="76px" width="300px"> |
<ItemTemplate> |
<table class="News_Detail"> |
<tr> |
<td style="width:85px"> </td> |
<td align="left" class="News_Text"> |
<%#DataBinder.Eval(Container.DataItem, "Date")%> |
<asp:Label ID="lblID" CssClass="News_TextCache" Visible="true" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "ID")%>'></asp:Label> |
</td> |
</tr> |
<tr> |
<td style="width:85px"> </td> |
<td align="left" class="News_Text"> |
<%#DataBinder.Eval(Container.DataItem, "Titre")%> |
</td> |
</tr> |
<tr> |
<td style="width:85px"> </td> |
<td align="right"class="News_Text"> |
<asp:HyperLink ID="HyperLinkPlus" runat="server"><asp:Label ID="lblPlus" runat="server" Text="Plus.."></asp:Label></asp:HyperLink> |
</td> |
</tr> |
</table> |
</ItemTemplate> |
</telerik:RadRotator> |
any suggestion?