Asp.net ajax实现任务提示页面

2009-05-12 22:37:39来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

以下为引用的内容:

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
    void WaitFiveSeconds(object o, EventArgs e)
    {
        System.Threading.Thread.Sleep(5000);
        Label1.Text = DateTime.Now.ToLongTimeString( );
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>ASP.NET AJAX</title>
</head>
<body>
<form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
            <asp:Button ID="Button1" runat="server" Text="Do something" OnClick="WaitFiveSeconds" /><br />
            <asp:Label ID="Label1" runat="server" />
        </ContentTemplate>
    </asp:UpdatePanel>
    <asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
        <ProgressTemplate>
        <div style="position: absolute; left: 200px; top: 150px; border: solid 1px black; padding:4px;">
            Loading, please stand by ...
        </div>
        </ProgressTemplate>
    </asp:UpdateProgress>
</form>
</body>
</html>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASP.NET刷新页面的六种方法

下一篇:ASP.NET开发下的MVC设计模式的实现

热门词条
热门标签