如何将毫秒显示从左移到右

发布于 2024-11-17 17:12:53 字数 283 浏览 4 评论 0原文

显示显示页面所花费的毫秒数的小气泡。如何将其配置为显示在右侧角而不是左侧角。

已尝试通过 global.asax 进行访问设置。

能够通过将源更改为来尝试它

<div class="profiler-results left"></div>

<div class="profiler-results right"></div>

谢谢

The little bubble that shows the ms taken to display the page. How can I configure it to display in the RH corner instead of the LH corner.

Have tried access setting via global.asax.

Was able to trial it by changing the source from

<div class="profiler-results left"></div>

to

<div class="profiler-results right"></div>

thanks

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

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

发布评论

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

评论(1

影子是时光的心 2024-11-24 17:12:53

您可以像这样设置探查器弹出位置:

MiniProfiler.Settings.PopupRenderPosition = RenderPosition.Right;

您只需设置一次,因此 Global.asax.cs 的 protected void Application_Start() 是一个好地方。

You can set the profiler popup position like so:

MiniProfiler.Settings.PopupRenderPosition = RenderPosition.Right;

You only need to set this once, so Global.asax.cs' protected void Application_Start() is a good place.

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