Sunday, September 2, 2018

DATALIST IMAGE WITH HYPER LINKING

<asp:DataList ID="dlstmovie" runat="server"   RepeatColumns="3"    RepeatDirection="Horizontal" Width="490px" CellPadding="2" CellSpacing="2">
    <ItemTemplate>
     
       
       <a href='<%#Eval("furl") %>'>
     
     
          <img alt="" src='Admin/indexing/<%#Eval("fname") %>'  Height="80px"   Width="209px" />

           </a>
     
    </ItemTemplate>
 
</asp:DataList>

No comments:

Post a Comment

Gridview send email

 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; ...