Showing results for June 2006 - .NET Blog

Jun 30, 2006
0
0

Part 1 of 3: Creating sub-projects in IIS with Web Application Projects

Web Development Tools Microsoft
Web Development Tools Microsoft

First a quick intro, since this my first post on the team blog.  My name is Omar Khan.  I'm the group program manager for the web development tools team.  I manage the program management team that helps design the web tools inside of Visual Studio. This post is one of a three part series that describes how to factor development of ...

ASP.NET
Jun 28, 2006
0
0

DHTML Editing Control and IE7+

Web Development Tools Microsoft
Web Development Tools Microsoft

The webdevtools team has historically owned a control that shipped with IE5.5 and above.  This control is the DHTML Editing Control.  In order to improve security in IE7+, we took a hard look at this control and decided to remove it from Vista and IE7+.  A post I made yesterday on the IE blog talks about this in detail.  Pl...

ASP.NET
Jun 7, 2006
0
2

Suspending and resuming threads for GC

maoni
maoni

First of all, suspension and resumption of threads is not really part of the GC. GC calls functions to do the suspension and the resumption as a service provided in the CLR. Other components in the CLR also use this service such as the debugger implementation. But it’s true that suspending and resuming because of the GC is the most significant usag...

.NET
Jun 6, 2006
0
1

When memory is running low…

maoni
maoni

When I say memory I mean physical memory. Let’s assume that you have enough virtual memory space. When the physical memory gets low you may start getting OOMs or start paging. You can experiment and see how you can avoid getting into the low memory situation but sometimes it’s hard to predict and hard to test all scenarios your app can get into. Fo...

.NET