Hi
Following is my code to show the RSS feed inside a rotator which i copied from your example. (
http://localhost/telerik/r.a.d.controlsQ3_2006_NET2/Rotator/Examples/Functionality/Default/DefaultCS.aspx)
I am using a dataset as the datasource to display the read rss feed. Everything is working fine. My question is how can I make the Title of the feed that is being displayed by the Ticker as hyperlink, so that when user clicks on it, it displays the full story.
<radR:RadRotator ID="RadRotator1" runat="server" ScrollDirection="right" DataMember="item"
Width="700" Height="25" FrameTimeout="5000" >
<FrameTemplate>
<table>
<tr>
<td style="color: Red; font-family: Arial; font-size: 14px;">
Latest News :
</td>
<td>
<div style="font-family: Arial; font-size: 14px; color: #798048;">
<radR:RadTicker ID="ticker1" runat="server" TickSpeed ="85" >
<%# DataBinder.Eval(Container.DataItem, "title") %>
</radR:RadTicker>
</div>
</div>
</td>
</tr>
</table>
</FrameTemplate>
</radR:RadRotator>
thanks
Mitesh