`
jiasongmao
  • 浏览: 679313 次
  • 性别: Icon_minigender_1
  • 来自: 石家庄
社区版块
存档分类
最新评论

为使用微软AJAX框架的所有页面添加正在加载的遮罩层效果

 
阅读更多

如果多个页面使用了微软的AJAX框架,为了统一为所有UpdatePanel添加刷新遮罩效果,可以使用如下代码:

 

protected void Page_LoadComplete(object sender, EventArgs e)
        {

            if (IsAjaxRequest() == false)
            {

                List<UpdatePanel> updatePanels = this.Form.GetAllControls().OfType<UpdatePanel>().ToList();
                string updatePanelsId = "";
                foreach (UpdatePanel panel in updatePanels)
                {
                    updatePanelsId += panel.ClientID + ";";                    
                }
                try
                    {
                        this.Form.Attributes["updatePanelsId"] = updatePanelsId.Trim(';');
                    }
                    catch { }


            }

        }

        /// <summary>
        /// 判断本次请求是否为AJAX请求【微软AJAX框架】
        /// </summary>
        /// <returns></returns>
        protected bool IsAjaxRequest()
        { 
            string micAjaxToken = Page.Request.Headers["X-MicrosoftAjax"];
            string xhrToken = Page.Request.Headers["X-Requested-With"];
            if ("Delta=true".Equals(micAjaxToken) && "XMLHttpRequest".Equals(xhrToken))
            {
                return true;
            }
            return false;
        }

 

$(function () {
    initUpdateProgressPanel();
});

function initUpdateProgressPanel() {


    var updatePanelsId = $("form").attr("updatePanelsId");
    if (updatePanelsId == undefined || updatePanelsId == null || updatePanelsId.length == 0) {
        return;
    }

    updatePanelsId = updatePanelsId.split(';');

    $.each(updatePanelsId, function (i, item) {
        //id="ctl07" class="loadingbox" updatepanelid="UpdatePanel2" style="display: none;"
        var progressPanelId = 'progressPanel' + i;
        var progressPanel = $("<div id='" + progressPanelId + "' class='loadingbox' updatepanelid='" + item + "'><img src='/Images/loading.gif'></div>");
        $("form").append(progressPanel);

        $create(Sys.UI._UpdateProgress, { "associatedUpdatePanelId": item, "displayAfter": 0, "dynamicLayout": true }, null, null, $get(progressPanelId));


        var updatePanel = $("#" + item);
        matchUpdatePanelForProgress(updatePanel, progressPanel);

        updatePanel.resize(function () {
            var progressPanel = $(this).attr("id");
            progressPanel = $("div[updatepanelId='" + progressPanel + "']");
            matchUpdatePanelForProgress($(this), progressPanel);
        });
    });
}

function matchUpdatePanelForProgress(updatePanel, progressPanel) {
    var style = "display:none;opacity:0.5; -moz-opacity:0.5; filter:alpha(opacity=50);background-color:#aaccff;z-index:9999;position:absolute;width:" + updatePanel.width() + "px;height:" + updatePanel.height() + "px;";
    style = style + "left:" + updatePanel.offset().left + "px;top:" + updatePanel.offset().top + "px;";
    var img = $(progressPanel).find("img");
    var imgMarginLeft = updatePanel.width() / 2 - 80;
    var imgMarginTop = updatePanel.height() / 2 - 10;
    img.attr("style", "margin-left:" + imgMarginLeft + "px;margin-top:" + imgMarginTop + "px");
    $(progressPanel).attr("style", style);
}

 

public static class ControlExtensions
    {
        public static IEnumerable<Control> GetAllControls(this Control ctrl)
        {
            foreach (Control c in ctrl.Controls)
                yield return c;
            foreach (Control c in ctrl.Controls)
                foreach (Control cc in GetAllControls(c))
                    yield return cc;
        }
    }

 

 

 

 

分享到:
评论

相关推荐

    asp.net+sql2000加载数据真实进度条

    一旦所有数据加载完成,服务器会发送一个完成信号,客户端接收到后隐藏进度条并移除遮罩层,展示加载好的数据。 为了实现这个功能,开发者需要对ASP.NET的控件、AJAX技术、JavaScript事件处理以及SQL查询有深入理解...

    ASP.NET利用MVC框架及JQuery技术实现登录、分页及等待

    5. **等待显示(Loading动画)**:在数据加载过程中,JQuery可以用来添加等待效果,如显示加载指示器或遮罩层,以告知用户系统正在处理请求。这可以通过CSS和JQuery的动画功能实现,通常在AJAX请求开始时显示,请求...

    一个基于ASP.NET实现的Masked Div Or Modal Popup Window程序源码例子

    它允许在网页上创建遮罩层弹出窗口,通常用于显示警告、确认对话框或者加载内容时提供一种半透明的覆盖层,以防止用户在处理关键操作时与页面其他部分进行交互。 首先,我们要理解“Masked Div”和“Modal Popup ...

    基于jQuery的树控件实现代码(asp.net+json)

    - 防ext的mask()加载效果:提供了一个加载遮罩层,增强用户体验,避免在数据加载时用户进行无效操作。 - 树控件:核心插件,负责解析JSON数据,并生成树形控件。 8. 注意事项和使用限制: 文档最后提到,本代码仅供...

Global site tag (gtag.js) - Google Analytics