Nuno Gomes /* ASP.NET Adventures */
var myInterests = new { language : "C#", technology: "ASP.NET" };
-
ASP.NET - Health Monitoring and EventLogWebEventProvider - Part 1
The ASP.NET health monitoring enables you to add instrumentation to Web applications by using the so called Web Events. These Web events give us information about health status.
-
ASP.NET - EventMappingSettingsCollection bug on Contains method
Recently, while digging on ASP.NET 2.0 Health Monitoring I found a bug in the EventMappingSettingsCollection.Contains class method.
-
NunoGomesControlToolkit - Improving Web Apps performance
A few weeks ago I told you about a control toolkit I was making.
-
ASP.NET Controls - Improving automatic ID generation : The ShortIDs Naming Provider (Part 4)
In the previous posts on this subject I wrote about why automatic ID generation should be improved and how we can improve it. Now I will step forward and show you my own implementation of a specific naming provider.
-
ASP.NET Controls - Improving automatic ID generation : Architectural Changes ( Part 3)
Naming container controls are a subclass of standard controls, that differ in the ability to manage child controls' ID, in fact, these naming container controls are the key to unique ID generation. To become a namingcontainer a regular control must implement the INamingContainer interface.
-
Less MSIèrables - Extract the content of a .MSI file
Yesterday, I decided to spent some time reviewing the WindowsLiveWriter plugin gallery and search for a replacer for Steve Dunn CodeFormatter plugin. I've been using this plugin since the beginning of the year but it reveal some problems composing the Html.
-
ASP.NET - Dynamic Control Mapping
I already posted here about Tag Mapping and how helpful it can be, but naturally there's are a few improvements that I would like to see available in future framework release.
-
ASP.NET ListView Control
Some time ago I needed to render hierarchical data to a <ul>/<li> elements structure and also be able to render a special attribute to the <li> Html elements.
-
ASP.NET Controls - Improving automatic ID generation : Concept ( Part 2)
Before proceeding to the implementation details, let's discuss a little about how ASP.NET handles automatic Id generation.
-
ASP.NET Controls - Improving automatic ID generation : Introduction ( Part 1)
Some time ago, while developing a large corporate ASP.NET application with high complex layout requirements and thus, many custom composite controls, I was faced with the following problem: