I am trying to make a slide with thumbnail that contains link. if you browse yahoo home page, you see image slide show with links. example is the image i attached, from yahoo home page image slide show. Please i want to know how to do it, please help me to learn how to make it. Thank you.

<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
                            </asp:ToolkitScriptManager>
                            <asp:Timer ID="SlideShowTimer" runat="server" interval="5000" 
                                ontick="SlideShowTimer_Tick" />
                            <br />
                            <h2 style="text-transform: uppercase; margin: 10px 0px 0px 8px; display: inline;">
                                Welcome to our IVF slidestory shuffle!
                            </h2>
                            <br />
                            <asp:UpdatePanel ID="SlideShow" runat="server" UpdateMode="Conditional">
                                <Triggers>
                                    <asp:AsyncPostBackTrigger controlid="SlideShowTimer" eventname="Tick" />
                                </Triggers>
                                <ContentTemplate>
                                 <ContentTemplate> 
                                    <asp:HyperLink ID="HyperLink10" runat="server" NavigateUrl="~/WebForm1.aspx">Read more...</asp:HyperLink>
                              </ContentTemplate> 
                        <img runat="server" id="SlideShowImage1" src="../Images/preg1.JPG"
       alt="First Image" width="300"/>
                                </ContentTemplate>
                               
                            </asp:UpdatePanel>
                            <asp:UpdatePanelAnimationExtender ID="UPextender" runat="server" 
                                BehaviorID="animation" TargetControlID="SlideShow">
                                <Animations>
<OnUpdating>

<FadeOut Duration=".5" Fps="20" minimumOpacity=".1" />
</OnUpdating>
<OnUpdated>

<FadeIn Duration=".5" Fps="20" minimumOpacity=".1" />
</OnUpdated>
</Animations>
                            </asp:UpdatePanelAnimationExtender>

try search in Google java script image slider or jquery image slider lot of example you will get

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.