.NET Blog

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

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

Visual Web Developer Starter Kits

  Many of you are probably aware of Visual Web Developer/Visual Studio web site starter kits that are available online.  If you have not seen or used these yet, they are complete end-to-end working web site templates that you can either use a starting point for your project or as a learning aid to get more familiar with&...

My application seems to hang. What do I do? – Part 2

Last time I talked about the hang scenario where your process is taking 0 CPU and the CPU is taking by other process(es) on the same machine.   The next scenario is your process is taking 0 CPU and the CPU is barely used by other processes.   As one of the readers correctly pointed out, this is very likely because you have a ...
Comments are closed.0 0
.NET

Live from Redmond – webcast series

  Over the past month, we have been doing a round of webcasts titled “Live from Redmond”.   These are technology presentations made by team members working on the various products.  You can get more details on these from Simon Muzio’s blog.  The upcoming web talks are listed below.  In particular, I’d like ...

Visual Web Developer Express turns one!

This week marks the first anniversary of Visual Studio 2005 and the Express editions.  Almost a year ago to the day - 11/7/2005 to be precise - was the day we launched Visual Studio 2005.  That also marked the debut of the free Express Editions that have since proven to be a huge hit in the developer community.  ...

Beta2 of ASP.NET AJAX (formerly Atlas) has shipped!

  This Monday we shipped Beta2 of the ASP.NET AJAX framework – formerly known as “Atlas”.  You can visit the ASP.NET AJAX website or Scott Guthrie’s blog article for details.  The bits can be downloaded from here.   We have made sure that the already shipped version of Visual Studio 2005 and Visual Web Developer...

Correlating the output of !eeheap -gc and !address

!address is a very powerful debugger command. It shows you exactly what your VM space looks like. If you already got the output from the !sos.eeheap -gc command (refer to this article for usage on sos), for example: 0:003> !eeheap -gcNumber of GC Heaps: 1generation 0 starts at 0x01245078generation 1 starts at 0x0124100cgeneration 2 starts ...
Comments are closed.0 0
.NET