<asp:Repeater id=”myRepeaterPlain” runat=”server”> <ItemTemplate> <%# DataBinder.Eval(Container.DataItem, “Id”) %>, <%# DataBinder.Eval(Container.DataItem, “Name”) %>, <%# DataBinder.Eval(Container.DataItem, “URL”) %>, <%# DataBinder.Eval(Container.DataItem, “Image”) %> <br /> </ItemTemplate> </asp:Repeater>
Category Archives: ASP / ASP.net
Include files with asp.net
 An ASP.NET include, or server-side include, is a plain HTML, HTML/ASP.NET, or ASP.NET-only file that sits outside of a parent Web page. The power of a simple include file is tremendous—it allows you to re-use content that will appear on multiple pages throughout your site. Instead of making the same change 100 times to …