.NET Blog

Free. Cross-platform. Open source. A developer platform for building all your apps.

Visual Studio 2005 SP1 released – details about changes for web tools

As many of you may heard Visual Studio 2005 SP1 was officially released several days ago.  There have already been a couple of blog posts announcing the release from ScottGu and Soma.  One item of feedback I saw on those posts was a request for more information about the actual fixes in SP1.I'm writing this blog post to ...

Difference Between Perf Data Reported by Different Tools – 3

Both the !SOS.gchandles command (added in CLR 2.0) and the .NET CLR Memory\# GC Handles counter show you the number of GC handles you have in your process. The # GC Handles counter is one of the rare counters in the .NET CLR Memory category that doesn’t get updated at the end of each GC. Rather we update it in the handle table code, for ...
Comments are closed.0 0
.NET

Difference Between Perf Data Reported by Different Tools – 2

Managed Heap Size We have both .NET CLR Memory perf counters and SoS extensions that report manged heap size related data. Difference 2 There are a few .NET CLR Memory counters that are related to the managed heap size: # Total Committed Bytes # Total Reserved Bytes I explained what these counters mean here. Now, how are ...
Comments are closed.0 0
.NET

Difference Between Perf Data Reported by Different Tools – 1

So, there are many perf tools and some of them report either the same or the same type of data. I want to talk about various differences between the ones related to managed heap investigation. This is not supposed to cover everything..just the ones I think people use frequently. Managed Heap Size We have both .NET CLR Memory perf counters and ...
Comments are closed.0 0
.NET

WPF/E ASP.NET Server Control

The other day, I have posted on an entry on my blog showing how to embed videos on your websites using simple IFrame technique. The next thing I wanted to do is to build an ASP.NET Server Control to show how easy it is to integrate rich content into ASPX pages - but Mike Harsh beat me to it. See his post about the WPF/E ASP.NET Server ...

Not seeing the WKS:: and the SVR:: namespace?

These namespaces were introduced in CLR 2.0. For example for the   GCHeap::GcCondemnedGeneration   symbol, it's WKS::GCHeap::GcCondemnedGeneration for Workstation GC and SVR::GCHeap::GcCondemnedGeneration for Server GC (if you are reading the Investigating Memory Issues article in the recent MSDN magazine and are trying out some of ...
Comments are closed.0 0
.NET

Part 3 of 3: Creating sub-projects using the Visual Studio Development Server and Web Application Projects

This is the Part 3 of a 3 part series on using sub-projects with the Web Application Projects add-in for Visual Studio 2005. Part 1 of the series can be found here. Part 2 of the series can be found here. This post covers the final concept I wanted to share when using sub-projects with the Web Application Projects add-in, that is ...

Getting started with ASP.NET AJAX in Visual Web Developer

Once you download ASP.NET AJAX, you are ready to start using Visual Web Developer and Visual Studio 2005 for your development. The first thing you will notice when you open up Visual Web Developer is that you now have a new project type called ASP.NET AJAX Enabled Web Site as seen below. (image) Selecting this option will give you a web ...

Check out the CLR Lead Architect’s New Blog

Many people know Patrick Dussud by his outstanding work on Garbage Collection. But did you know he was one of the founders of the CLR? In his intro blog entry he talks about how the CLR came to life. I am sure it will be a great read for those of you who are curious about it...
Comments are closed.0 0
.NET