UpdateProgress使用

UpdateProgress是一个进度显示条,加在AJAX里能显得更加的人性化(个人认为)。现在我们就开始吧: 第一.新建一个AJAX项目。在页面上加上ScriptManager,UpdatePanel,UpdateProgress,同时在UpdatePanel中加入一个Label,和Button。 第二:选中UpdateProgress的AssociatedUpdatePanelID设置为UpdatePanel1,完整的HTML代码如下:
UpdateProgress使用<%@ Register UpdateProgress使用    Assembly="AjaxControlToolkit" UpdateProgress使用    Namespace="AjaxControlToolkit" UpdateProgress使用    TagPrefix="ajaxToolkit"%> UpdateProgress使用<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> UpdateProgress使用UpdateProgress使用<html xmlns="http://www.w3.org/1999/xhtml"> UpdateProgress使用<head runat="server"> UpdateProgress使用    <title>无标题页</title> UpdateProgress使用</head> UpdateProgress使用<body> UpdateProgress使用    <form id="form1" runat="server"> UpdateProgress使用    <div> UpdateProgress使用        <asp:ScriptManager ID="ScriptManager1" runat="server"> UpdateProgress使用        </asp:ScriptManager> UpdateProgress使用    UpdateProgress使用    </div> UpdateProgress使用        <asp:UpdatePanel ID="UpdatePanel1" runat="server"> UpdateProgress使用            <ContentTemplate> UpdateProgress使用                &nbsp;<asp:Label ID="Label1" runat="server" Text="Label" Width="166px"></asp:Label>&nbsp; UpdateProgress使用                <br /> UpdateProgress使用                &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; UpdateProgress使用                <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button"/> UpdateProgress使用            </ContentTemplate> UpdateProgress使用        </asp:UpdatePanel> UpdateProgress使用        <asp:UpdateProgress ID="testUp" runat=server AssociatedUpdatePanelID="UpdatePanel1"> UpdateProgress使用            <ProgressTemplate> UpdateProgress使用                progressingUpdateProgress使用UpdateProgress使用UpdateProgress使用.. UpdateProgress使用            </ProgressTemplate> UpdateProgress使用           UpdateProgress使用        </asp:UpdateProgress> UpdateProgress使用    </form> UpdateProgress使用</body> UpdateProgress使用</html>

第三,在BUTTON中加入点击事件,代码如下:

UpdateProgress使用); UpdateProgress使用UpdateProgress使用        Label1.Text =  DateTime.Now.ToString();

主要是故意创建一个延迟,显示效果。 最后,运行就ok了

上一篇:Android使用Fragment来实现TabHost的功能(解决切换Fragment状态不保存)以及各个Fragment之间的通信


下一篇:为什么mysql设置了密码之后,本地还可以直接访问,不需要输入密码就可以登录数据库了?