当前位置: 代码迷 >> ASP.NET >> asp.net ajax空间解决思路
  详细解决方案

asp.net ajax空间解决思路

热度:4969   发布时间:2013-02-25 00:00:00.0
asp.net ajax空间
怎么获取当前时间(自动更新)

------解决方案--------------------------------------------------------
HTML code
    <form id="form1" runat="server">    <asp:ScriptManager ID="ScriptManager1" runat="server">    </asp:ScriptManager>    <asp:UpdatePanel ID="UpdatePanel1" runat="server">        <ContentTemplate>            <asp:Label ID="Label1" runat="server" Text=""></asp:Label>            <asp:Timer ID="Timer1" runat="server" Interval="1000" ontick="Timer1_Tick">            </asp:Timer>        </ContentTemplate>    </asp:UpdatePanel>    </form>
  相关解决方案