Browse by Tags

All Tags » Architecture » C# (RSS)

Visual Studio 2008 and .NET FX 3.5 to RTM before the end of November 2007

Today, S.Somasegar announced at TechEd Developers EMEA , amongst other things, that they the product team at Microsoft is putting the finishing touches on Visual Studio 2008 and .NET FX 3.5. They are on track to shipping these products before the end...

A new phase for the Acropolis project

The Acropolis Team has announced that Acropolis is going to enter a new phase.

Are Page Modules Still Useful In IIS7?

With IIS7 a new transfer method is available in the HttpServerUtility class . It's the TransferRequest method . What this method is intended to do is behave like the HttpResponse.Redirect method without the penalty of traveling to the client and back...

Lattix Update – Announcing Lattix 3.5

Lattix has upgraded its LDM product: Lattix LDM for C/C++ now includes an integration with Understand for C++ As part of our Lattix LDM C/C++ solution, we now offer an integration with Understand for C++ from Scitools, leveraging its fast and accurate...
Posted by Paulo Morgado | with no comments

Validation Guidance Bundle

The P&P team has released another Web Client Software Factory Guidance Bundle . This time is the Validation Guidance Bundle . What are some scenarios to consider using the guidance in this bundle for? Improving UI responsiveness while reusing entity...

Page Flow Application Block With Page Modules

Introduction In this article I will demonstrate how a web application can benefit from the use of Page Modules using, for the demonstration, the Page Flow Store Quick Start and the Page Flow Application Block shipped with the Web Client Software Factory...

Guidance Bundles From The Web Client Software Factory

The P&P team came up with a new concept for the Web Client Software Factory : Guidance Bundles . What is a Guidance Bundle? A Guidance Bundle is a small package of guidance whose purpose is to allow users to quickly, conveniently, and easily learn...

Web Client Software Factory Knowledge Base

Check out the knowledge base page at the Web Client Guidance Community site .

You Don't Always Need Page Modules

From my article on Page Modules some people might have gotten the wrong impression that this would be the only way to get a reference to the page given its path, but it isn't. You can use the System.Web.UI.PageParser.GetCompiledPageInstance method...

ASP.NET Resource Providers and HTTP Context

Sometime ago I built a custom resource provider for ASP.NET that relied on an attribute applied to the HTTP handler (usually a page ) class instead of its virtual path to determine the location of the resources. Something like this: [ ResourceLocationAttribute...

The Cost Of Client-Side Redirects In ASP.NET And Using Page Modules

I've been asked if the Page Modules are really useful and if is there such an high cost on client-side redirects. I hope this helps to shed some light to the issue.

Introducing ASP.NET Page Modules

From the need to handle events in every rendered page and not wanting to pay the penalties (network usage and server load) of frequent client redirects, I came up with the concept of Page Modules. Read all about it.

Introducing ASP.NET Page Modules

(Republished at http://www.codeproject.com/useritems/PageHandlerFactoryWithMod.asp ) Introduction This article introduces the concept of Page Modules , which are similar to HTTP Modules but related to Page Life Cycle , and the need for them. How HTTP...

Patterns & Practices Summit and TechEd Developers (Europe)

November 5-9 2007, Microsoft Redmond With: Anders Hejlsberg Steve McConnell Scott Guthrie Scott Hanselman John Lam http://www.pnpsummit.com/west2007.aspx 5-9 November 2007, Barcelona, Spain Without: Anders Hejlsberg Steve McConnell Scott Guthrie Scott...

WCF: Error Code vs Exception?

There's an interesting discussion going on on the Architecture General MSDN Forum . Check it out.

TypeTypeConverter - The Type TypeConverter

I've been searching high and low for a TypeConverter for Type s and only found private or internal implementations. It wasn't a hard task, but I think that the .NET Framework should provide one out of the box. Here is the one I wrote: /// <summary>...

Reference Implementation With Page Flow Navigation

In a previous post , I talked about Page Flow Navigation vs. Page Navigation . This is an adaptation of the Reference Implementation to work with Page Flow Navigation . (You’ll need the changed version of the Page Flow Application Block .) Downloads Reference...

PageFlowWithShoppingCartQuickStart Sample With Page Flow Navigation

In a previous post , I talked about Page Flow Navigation vs. Page Navigation . This is an adaptation of the PageFlowWithShoppingCartQuickStart sample to work with Page Flow Navigation . (You’ll need the changed version of the Page Flow Application Block...

Page Flow Navigation vs. Page Navigation

Introduction I've been working with page flows for the past days and the idea of navigating to a page flow instead of navigating between pages belonging to a pageflow is making more sense each time I think about it. The Web Client Software Factory...

Naming Convention Violation On The .NET BCL

I wonder who is responsible for this : public class Formatter { // ... protected ObjectIDGenerator m_idGenerator; protected Formatter m_objectQueue; // ... } Can you spot how many naming conventions were violated here?
More Posts Next page »