在 aspx 和 aspx.cs 之间切换选项卡时,VS2008 IDE 给出 5 秒的延迟,这是怎么回事?
我在 XP sp2 笔记本电脑上安装了 VS2008 (SP1)。
IDE 上有一件事很奇怪,我不知道如何解决。
我正在编写一个网络应用程序,同时打开许多选项卡。 当我从 aspx 来回切换到 aspx.cs 时,我总是会延迟大约 5 秒才能输入键盘。
我认为这可能与某些背景布局渲染过程有关,但我从不从 aspx 页面打开“设计”屏幕,我总是打开“源”屏幕。 这5秒的延迟让人很恼火。
有什么配置吗? 建议?
多谢
I have VS2008 (SP1) installed on a XP sp2 laptop.
One thing weired on IDE, I don't know how to fix it.
I'm programming a web application, have many tabs openning at the same time. When I switch from aspx to aspx.cs back and forth, I always get about 5 seconds delay before I can type the keyboard.
I thought this might relate to some background layout rendering process, but I never open "Design" screen fro aspx page, I always open "Source" screen. This 5 seconds delay annoying a lot.
Any configurations? suggestions?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许此线程 可以提供任何帮助,这似乎表明 HTML 验证导致切换速度极其缓慢。
Perhaps this thread can be of any help, which seems to suggest that it's the HTML validation that's making the switch horribly slow.
Visual Studio 非常喜欢具有足够显存的优质显卡。 它使用它来合成网页。
而且,它通常只是一个资源消耗者。
Visual Studio really likes a good video card with a decent amount of video memory. It uses this for compositing the webpage.
Also, it's just a resource hog in general.
您距离使用机器上的所有物理 RAM 有多近? 此外,当您执行此操作时,还有多少其他进程正在运行,例如,您是否有防病毒软件、一些自动更新程序(Microsoft、Apple、Java、HP 驱动程序)、Windows 错误报告、SQL Server 等服务。 跑步?
正如其他人所指出的那样,它可能会占用大量资源,如果这是在打开程序的早期,则可能会发生诸如加载程序集之类的背景事情。
How close are you to using all your physical RAM on your machine? Additionally, how many other processes are running when you are doing this, e.g. do you have an anti-virus, a handful of auto-updaters(Microsoft, Apple, Java, HP drivers), services like Windows error reporting, SQL Server, etc. running?
It can be a resource hog as others have noted and if this is early in opening the program there may be background things like loading assemblies going on.