Controls:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
</asp:Timer>
<asp:LinqDataSource ID="LinqDataSource1" runat="server" ContextTypeName="NorthWindDataContext"
EnableDelete="True" EnableInsert="True" EnableUpdate="True" TableName="Products">
</asp:LinqDataSource>
<asp:DataList ID="DataList1" runat="server" DataSourceID="LinqDataSource1">
</asp:DataList>
</ContentTemplate>
</asp:UpdatePanel>
Code:
protected void Timer1_Tick(object sender, EventArgs e)
{
DataList1.DataBind();
}