只是想知道是否有人看到 C# .net 应用程序的任何可用进度条。我的应用程序大约需要 20-60 秒才能加载,我希望在用户等待时向他们显示进度条。我看到了这个,但是示例站点似乎不起作用,这并不能激发信心。
mrjrdnthms
问问题
8154 次
3 回答
4
您可以使用AJAX UpdateProgress 控件。
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdateProgress runat="server" id="PageUpdateProgress">
<ProgressTemplate>
Loading...
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel runat="server" id="Panel">
<ContentTemplate>
<asp:Button runat="server" id="UpdateButton" onclick="UpdateButton_Click" text="Update" />
</ContentTemplate>
</asp:UpdatePanel>
如果您想要动画,您需要做的就是将动画 .gif 弹出到“ProgressTemplate”中。
于 2008-10-21T22:34:47.790 回答
1
我会查看这篇博客文章 - 似乎是一个很好的方法。我自己没有测试过...
http://mattberseth.com/blog/2008/05/aspnet_ajax_progress_bar_contr.html
于 2008-10-21T05:58:11.860 回答
1
在你需要写这个的 aspx 页面中,我添加了一些你自己需要定义的 CSS 类,这个代码将帮助你
<asp:Panel ID="ProgressIndicatorPanel" runat="server" Style="display: none" CssClass="modalPopup">
<div id="ProgressDiv" class="progressStyle">
<ul class="ProgressStyleTable" style="list-style:none;height:60px">
<li style="position:static;float:left;margin-top:0.5em;margin-left:0.5em">
<asp:Image ID="ProgressImage" runat="server" SkinID="ProgressImage" />
</li>
<li style="position:static;float:left;margin-top:0.5em;margin-left:0.5em;margin-right:0.5em">
<span id="ProgressTextTableCell"> Loading, please wait... </span>
</li>
</ul>
</div>
</asp:Panel>
定义一个函数说 ProgressIndicator 如下
var ProgressIndicator = function (progPrefix) {
var divId = 'ProgressDiv';
var textId = 'ProgressTextTableCell';
var progressCss = "progressStyle";
if (progPrefix != null) {
divId = progPrefix + divId;
textId = progPrefix + textId;
}
this.Start = function (textString) {
if (textString) {
$('#' + textId).text(textString);
}
else {
$('#' + textId).text('Loading, please wait...');
}
this.Center();
//$('#' + divId).show();
var modalPopupBehavior = $find('ProgressModalPopupBehaviour');
if (modalPopupBehavior != null) modalPopupBehavior.show();
}
this.Center = function () {
var viewportWidth = jQuery(window).width();
var viewportHeight = jQuery(window).height();
var progressDiv = $("#" + divId);
var elWidth = progressDiv.width();
var elHeight = progressDiv.height();
progressDiv.css({ top: ((viewportHeight / 2) - (elHeight / 2)) + $(window).scrollTop(),
left: ((viewportWidth / 2) - (elWidth / 2)) + $(window).scrollLeft(), visibility: 'visible'
});
}
this.Stop = function () {
//$("#" + divId).hide();
var modalPopupBehavior = $find('ProgressModalPopupBehaviour');
if (modalPopupBehavior != null) modalPopupBehavior.hide();
}
};
给出的示例包含一个带模态的进度指示器,即当进度指示器运行时,它会禁用在屏幕上执行的其他操作。如果不需要,可以删除模态部分。
于 2012-09-14T04:50:57.500 回答