You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
543 B

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="WebUserControl3.ascx.cs" Inherits="WebUserControl3" %>
<asp:DataList ID="DataList1" runat="server" BackColor="#E4E9FA" RepeatDirection=Horizontal Width="833">
<itemtemplate>
<table border="0" align="center" cellpadding="0" cellspacing="10">
<tr>
<td><a href='<%# DataBinder.Eval(Container.DataItem, "web_address").ToString()%>'><%# DataBinder.Eval(Container.DataItem, "web_name").ToString()%></a></td>
</tr>
</table>
</itemtemplate>
</asp:DataList>