<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>rakkimk : Visual Studio</title><link>http://blogs.iis.net/rakkimk/archive/tags/Visual+Studio/default.aspx</link><description>Tags: Visual Studio</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Problems with rendering the "Design" View for a simple asp.net website from Visual Studio 2008</title><link>http://blogs.iis.net/rakkimk/archive/2009/03/09/problems-with-rendering-the-quot-design-quot-view-for-a-simple-asp-net-website-from-visual-studio-2008.aspx</link><pubDate>Mon, 09 Mar 2009 19:36:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2994060</guid><dc:creator>rakkimk</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/rakkimk/rsscomments.aspx?PostID=2994060</wfw:commentRss><comments>http://blogs.iis.net/rakkimk/archive/2009/03/09/problems-with-rendering-the-quot-design-quot-view-for-a-simple-asp-net-website-from-visual-studio-2008.aspx#comments</comments><description>&lt;p&gt;I recently worked with one of my customer who when clicking on the &amp;quot;Design&amp;quot; view of an ASPX page, the designer window doesn't appear - blank page appears. And if you minimize the VS window, and maximize it again - we will see the desktop background in the place of the Designer surface. &lt;/p&gt;  &lt;p&gt;Verified that neither the &amp;quot;Microsoft Visual Studio Web Authoring Component&amp;quot; nor &amp;quot;Microsoft Web Designer tools&amp;quot; was installed on the machine (Control panel --&amp;gt; Add/Remove window components). &lt;/p&gt;  &lt;p&gt;Ran the file [Path to the Installation DVD]\WCU\WebDesignerCore\WebDesignerCore.EXE &lt;/p&gt;  &lt;p&gt;NOTE&amp;#160; :&amp;#160; This exe doesn't have a UI, so watch the Task Manager to know when this exe completes its installation. &lt;/p&gt;  &lt;p&gt;Reference : &lt;a href="http://forums.asp.net/t/1167590.aspx"&gt;http://forums.asp.net/t/1167590.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Keywords : Visual Studio 2008 blank Design View hang&lt;/p&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2994060" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/rakkimk/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.iis.net/rakkimk/archive/tags/Web/default.aspx">Web</category></item><item><title>Getting "Unable to step. The operation could not be completed. A retry should be performed" while debugging in Visual Studio</title><link>http://blogs.iis.net/rakkimk/archive/2008/06/07/getting-quot-unable-to-step-the-operation-could-not-be-completed-a-retry-should-be-performed-quot-while-debugging-in-visual-studio.aspx</link><pubDate>Sat, 07 Jun 2008 18:06:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2408635</guid><dc:creator>rakkimk</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/rakkimk/rsscomments.aspx?PostID=2408635</wfw:commentRss><comments>http://blogs.iis.net/rakkimk/archive/2008/06/07/getting-quot-unable-to-step-the-operation-could-not-be-completed-a-retry-should-be-performed-quot-while-debugging-in-visual-studio.aspx#comments</comments><description>&lt;p&gt;&lt;b&gt;&lt;u&gt;Problem Description        &lt;br&gt;&lt;/u&gt;&lt;/b&gt;    &lt;br&gt;Getting below error messages while debugging an ASP.NET website in Visual Studio 2005 SP1&lt;/p&gt;  &lt;p&gt;when stepping through, getting &lt;/p&gt;  &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Unable to step. The operation could not be completed. A retry should be performed" &lt;/p&gt;  &lt;p&gt;After clicking OK on the dialog, getting &lt;/p&gt;  &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "The debugger cannot continue running the process. The operation could not be completed. A retry should be performed." &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;u&gt;Cause        &lt;br&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;A known issue with the Visual Studio debugger causing this problem. There is a race condition that happens when all of the following are true: &lt;/p&gt;  &lt;p&gt;1. Script debugging is enabled in IE    &lt;br&gt;2. User is debugging IE and another process     &lt;br&gt;3. The other process stops (hits breakpoint, step operation completes, stops at an exception, etc) at a moment when IE is not running script code     &lt;br&gt;4. IE starts running script code at roughly the same moment that the user hits F10/F5 in Visual Studio. The most likely reason for this to happen is that the code from 'setTimeout' is run - there could be other reasons as well. &lt;br&gt; &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;u&gt;Workaround        &lt;br&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;1. If you hit this problem, you can try detaching and reattaching the debugger. &lt;/p&gt;  &lt;p&gt;-or-    &lt;br&gt;2. This problem happens when debugging ASP.NET and when script debugging is enabled in IE. If you disable script debugging in IE, or toggle it on and off when switching between debugger server-side and client-side problems, you would be able to work around the issue. &lt;/p&gt;  &lt;p&gt;-or-    &lt;br&gt;3. If your web application is using setTimeout, you may be able to avoid or at least reduce the problem by doing something to ensure that script runs less often. This could mean increasing the timeout value, or this could mean adding conditions around when setTimeout is used. &lt;/p&gt;  &lt;p&gt;Above are the recommendations made by &lt;a href="http://blogs.msdn.com/greggm/" mce_href="http://blogs.msdn.com/greggm/"&gt;Gregg Miskelly&lt;/a&gt; of Visual Studio debugger development team. I’ve worked on this issue from developer support reported by one of our extremely helpful customer who gave us a perfect environment to troubleshoot and identify this issue. For this case I’ve worked on, disabling the script debugging in IE made the trick. &lt;/p&gt;  &lt;p&gt;Check out &lt;a href="http://forums.msdn.microsoft.com/en-US/vsdebug/thread/2320a943-d52d-437a-abec-6f1e9f929b52" mce_href="http://forums.msdn.microsoft.com/en-US/vsdebug/thread/2320a943-d52d-437a-abec-6f1e9f929b52"&gt;http://forums.msdn.microsoft.com/en-US/vsdebug/thread/2320a943-d52d-437a-abec-6f1e9f929b52&lt;/a&gt; for more details. &lt;/p&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2408635" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/rakkimk/archive/tags/Debugging/default.aspx">Debugging</category><category domain="http://blogs.iis.net/rakkimk/archive/tags/Visual+Studio/default.aspx">Visual Studio</category></item></channel></rss>