如何将毫秒显示从左移到右
显示显示页面所花费的毫秒数的小气泡。如何将其配置为显示在右侧角而不是左侧角。
已尝试通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样设置探查器弹出位置:
您只需设置一次,因此 Global.asax.cs 的
protected void Application_Start()
是一个好地方。You can set the profiler popup position like so:
You only need to set this once, so Global.asax.cs'
protected void Application_Start()
is a good place.