[ASP.Net][AJAX]聊天室 局部刷新 區域刷新

仿製 聊天室
總不能打字的時候跳離打字框
這時候區域更新就很重要

        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:Timer ID="Timer1" runat="server" Interval="10000">
</asp:Timer>
                <asp:ListBox ID="lst_text" runat="server" Height="282px" Width="225px"></asp:ListBox>
            </ContentTemplate>
        </asp:UpdatePanel> 
 
時間刷新 要包在 UpdatePanel  ContentTemplate 內 可避免 注點的跳離