简体   繁体   English

从VS2010移至VS2012后,HTML渲染间歇性丢失内容

[英]After move from VS2010 to VS2012 HTML rendering is intermittently losing content

We have updated our development environment from VS2010 to VS2012 but noticed the following issue: The start of the page is sometimes not rendered. 我们已经将开发环境从VS2010更新到了VS2012,但是注意到了以下问题:页面的开始有时没有呈现。

for example having something like: 例如具有以下内容:

<html>
  <head>
  <title>Title</title>
  <script>
    function myFunc() {...}
  </script>
  </head>
  <body>
    Content
  </body>
</html>

Might sometimes be rendered as: 有时可能会呈现为:

yFunc() {...}
  </script>
  </head>
  <body>
    Content
  </body>
</html>

This only happens when using the VS2012 development server, IIS and VS2010 development server work correctly. 仅在使用VS2012开发服务器,IIS和VS2010开发服务器正常工作时才会发生这种情况。 Also the issue seem to appear randomly on all pages (for 20-30% of the requests). 另外,该问题似乎随机出现在所有页面上(占请求的20-30%)。

NOTE: The application uses WebForms and .NET 3.5 注意:该应用程序使用WebForms和.NET 3.5

Seems the problem is related to this one computer. 似乎问题与这台计算机有关。 The problem did not occur on other computers, but a re-install did not help. 在其他计算机上没有发生此问题,但是重新安装没有帮助。

Seems there is really nothing that can be done... 似乎真的无能为力...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 将项目从VS2010迁移到VS2012后无法继承接口 - can't inherit interface after migrating project from VS2010 to VS2012 从vs2010迁移到vs2012后,Linq包含不起作用 - Linq Contains not working after migrate from vs2010 to vs2012 如何在VS2010和VS2012中加载数据库项目? - How to load database project in VS2010 and VS2012? DeploymentItem在VS2010和VS2012中的行为方式不同 - DeploymentItem behaving differently in VS2010 and VS2012 在项目开发过程中从VS2010升级到VS2012会有任何风险吗? - Is there any risk in upgrading from VS2010 to VS2012 in the middle of project development? 我可以在VS2010的VS2012中使用静态分析吗? - Can i use static analysis in VS2012 from VS2010? 从VS2010升级到VS2013(或VS2012)后,无法打开Visual Studio C#解决方案,错误消息“不支持给定路径的格式” - Can not open Visual Studio C# solution after upgrading from VS2010 to VS2013 (or VS2012), error message “The given path's format is not supported” AppFabric DataCacheFactory()初始化在VS2013中挂起,在VS2010和VS2012中正常工作 - AppFabric DataCacheFactory() initialization hangs in VS2013, works fine in VS2010 and VS2012 VS2012 OutOfMemoryException与VS2010没有异常的工作 - VS2012 OutOfMemoryException vs. VS2010 working w/o Exception Moq和Interop类型:在VS2012中工作,在VS2010中失败? - Moq & Interop Types: works in VS2012, fails in VS2010?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM