更新进度位置?

发布于 2024-09-26 06:17:24 字数 177 浏览 5 评论 0原文

我的更新进度显示在更新面板下方。有没有办法将其显示在导致异步回发的控件附近?我的表单很长,因此用户可能无法一直向下滚动并看到进度。

编辑

我在更新面板内使用表格进行布局。更新进度位于表格之后。似乎它总是显示在表格之后。

CSS中有没有办法根据当前滚动位置在屏幕右上角显示更新进度div?

My update progress displays under the update panel. Is there a way to display it near the control which caused the async postback? I have a very long form so users might not scroll all the way down and see the progress at all.

Edit

I am using a table for my layout inside the update panel. The update progress is placed right after the table. It seems it always displays after the table.

Is there a way in CSS to show the update progress div on the top right of screen according to current scroll position ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-10-03 06:17:24

只需使用

#div_update { position:fixed; top:0; right:0; }

它会将您的位置放置在屏幕的右上角,而不关心当前的滚动。

Just use

#div_update { position:fixed; top:0; right:0; }

It would place your at the top right corner of the screen, don't care about the current scroll.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文