0

我正在创建一个 ASP.NET/C# 应用程序。我希望在选择&时出现进度条/加载。&是。_RadioButtonListDropDownListRadioButtonListDropDownListAutoPostBack

我需要为&显示进度条/加载RadioButtonListDropDownList

谢谢你。

function ShowProgress() {
        setTimeout(function () {
            var modal = $('<div />');
            modal.addClass("modal");
            $('body').append(modal);
            var loading = $(".loading");
            loading.show();
            var top = Math.max($(window).height() / 2 - loading[0].offsetHeight / 2, 0);
            var left = Math.max($(window).width() / 2 - loading[0].offsetWidth / 2, 0);
            loading.css({ top: top, left: left });
        }, 200);
    }
    $('form').live("submit", function () {
        ShowProgress();
    });
4

1 回答 1

0

您可以添加一些 JavaScript 和 Html 以在每次回发时显示加载程序。请在下面找到帮助网址:

在 ASP.Net 中 PostBack 调用时显示加载图像

在回发期间锁定屏幕

如何在每个帖子上显示加载图像?

在 ASP.Net 中更新 UpdatePanel 时使用 GIF 图像显示加载进度指示器

于 2016-04-14T06:20:10.833 回答