Showing results for 2009 - Page 10 of 12 - .NET Blog

Mar 6, 2009
0
0

Hotfix for Visual Studio hang when opening Web project from a remote site

Web Development Tools Microsoft
Web Development Tools Microsoft

Under certain conditions opening Web projects from remote sites may become very slow. We've seen quite a few 'hang' reports submitted via 'Send Information to Microsoft' feedback (aka Dr. Watson). The reason is that sometimes XML editor (which is used when you edit web.config) may begin walking remote Web site file structure looking for XML sc...

ASP.NET
Mar 4, 2009
0
0

ASP.NET MVC Release Candidate 2

Web Development Tools Microsoft
Web Development Tools Microsoft

ASP.NET MVC Release Candidate 2 is live! Check out Phil Haack’s blog, Haacked.com, for information on the new installer and some other general release info. The release is mostly focused on responding to customer feedback but there are some minor tooling improvements and bug fixes that are worth calling out. Tooling Improvements And Important Fixes...

ASP.NET
Mar 4, 2009
0
0

Preview of Code Contract Tools Now Available

CLR Team
CLR Team

We’ve mentioned Code Contracts over on the BCL Blog a few times now, but never yet on the CLR Blog.  Basically, Code Contracts are a way to add preconditions, post-conditions, and object invariants to your code.  The goal is to help you catch developer errors earlier in the cycle.  In my Introduction to Code Contracts post, I g...

.NET
Mar 3, 2009
0
0

Hotfix Available for ASP.NET MVC Crashes With Azure/Power Commands/Resharper

Web Development Tools Microsoft
Web Development Tools Microsoft

If you have been experiencing Visual Studio crashes when opening view pages in design view or having trouble installing ASP.NET MVC due to problems with third party add-ins such as Power Commands, please try out the just released CLR hotfix here: https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=16827&wa=ws...

ASP.NET
Mar 1, 2009
0
0

Resource Manager and .Net Interaction with ServiceControlManager

CLR Team
CLR Team

Kim Hamilton has a couple of excellent posts on the BCL Team blog. In the first post on Working with the ResourceManager, Kim talks about the basics of resource generation, constructing a ResourceManager and how resource fallback works. The post also covers debugging resource loading failures using Fusion logs, Reflector and Resview.  In the...

.NET
Feb 24, 2009
0
0

Web Packaging: Creating web packages using MSBuild

Web Development Tools Microsoft
Web Development Tools Microsoft

This post is next in the series of VS 2010 articles that we have been putting together to dive into the Web Deployment improvements with VS 2010 and IIS.  I would recommend reading the the preceding posts to get an overview of all the scenarios supported: In this post I will cover web package creation using MSBuild command line.  M...

ASP.NET
Feb 24, 2009
0
0

VSDoc for jQuery 1.3.2 Now Available

Web Development Tools Microsoft
Web Development Tools Microsoft

jQuery 1.3 was released a little over a month ago.  The 1.3 release adds exciting features such as selector performance improvements, "live events" where events can be bound to both current and future elements, and more.  Version 1.3.2 was released a few days ago and fixes some bugs include one involving selector performance in IE. I just...

ASP.NET
Feb 20, 2009
0
0

CLR Inside Out – Isolated Storage in Silverlight 2

CLR Team
CLR Team

  The March installment of the “CLR Inside Out” column in MSDN magazine is now available on line.  This month we have an article from Justin Van Patten on Isolated Storage in Silverligth 2. You can find a list of all “CLR Inside Out” articles here.  As always, please let us know if you have ...

.NET
Feb 20, 2009
0
0

CLR Inside Out – Handling Corrupted State Exceptions

CLR Team
CLR Team

  As Andrew pointed out in his recent post, the February installment of the “CLR Inside Out” column in MSDN magazine is now available on line.  This month we have an article from Andrew Pardoe on Handling Corrupted State Exceptions.You can find a list of all “CLR Inside Out” articles here.  As always, ...

.NET
Feb 19, 2009
0
0

Why catch(Exception)/empty catch is bad

CLR Team
CLR Team

  You’ve seen the advice before—it’s not a good programming practice to catch System.Exception. Because managed exceptions are hierarchical, catching the top of the hierarchy—e.g., catch(Exception)—is an easy way to make sure that you catch all exceptions.  But do you really want to catch all exceptions?...

.NET