Archive for January, 2005

Saturday, November 29, 2008 10:16

Enterprise Library 1.0 released

The Enterprise Library is a library of application blocks designed to assist developers with common enterprise development challenges.
The application blocks that comprise the Enterprise Library are the following:

Caching Application Block
Configuration Application Block
Data Access Application Block
Cryptography Application Block
Exception Handling Application Block
Logging and Instrumentation Application Block
Security Application Block

Want to know [...]

Saturday, November 29, 2008 10:16

Choosing Between Smart Client and Thin Client Architectures

The presentation layer is a vitally important part of an application. This article discusses the thin and smart client approaches and provides guidance on how to choose between them.
Choosing the Right Presentation Layer Architecture
[ Via Mark Bower ]

Bookmark It

Hide Sites

$$(‘div.d618′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

The CLR team’s internal coding guidelines

Brad Abrams just published an article containing the CLR team’s internal coding conventions . It’s a good example of a coding style document.
[ Via Larry Osterman's WebLog ]

Bookmark It

Hide Sites

$$(‘div.d617′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

Vote For MSBuild to target 1.1 framework

By having support for 1.1 it will make it much easier for customers to get their feet wet prior to converting to 2.0.  As much as we all wish all our clients will convert to 2.0 the day it arrives – we all know that’s not the reality.
Take a minute and register your vote!
Click here [...]

Saturday, November 29, 2008 10:16

Trend of .NET Framework installations

Brad Abrams wrote interesting information about Trend of .NET Framework installations

Bookmark It

Hide Sites

$$(‘div.d615′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

Microsoft Log Parser 2.2

Log parser is a powerful, versatile tool that provides universal query access to text-based data such as log files, XML files and CSV files, as well as key data sources on the Windows? operating system such as the Event Log, the Registry, the file system, and Active Directory?. You tell Log Parser [...]

Saturday, November 29, 2008 10:16

Learn how to customize your .Text Blog

Learn how to customize your .Text Blog by painting boxes around the posts, improving comment layout and adding search box and logo image.
[ Via Josh Ledgard Blog ]

Bookmark It

Hide Sites

$$(‘div.d613′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

Submit your RSS feed to 15 places at a time

Submit your RSS feed to 15 places at a time, via FeedSubmitter, available free at http://thomaskorte.com/feedsubmitter
[Via www.researchbuzz.org]

Bookmark It

Hide Sites

$$(‘div.d612′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

Google, MSN and Yahoo unite to battle comment spam

The major search engines have unveiled a new indexing command for web authors that they all recognize, one that they hope will help reduce the link and comment spam that plagues many web sites, especially those run by bloggers.
Google, Yahoo, MSN Unite On Support For Nofollow Attribute For Links
[ Via Alex Barnett blog ]

Bookmark It

Hide [...]

Saturday, November 29, 2008 10:16

Transform RSS feed to HTML using XSLT stylesheet

This code reads the RSS feed and transform it to HTML using XSLT
(Based on VFP code from Calvin Hsia’s WebLog)
Download XSLT stylesheet
 

try
{
string rssUrl = "http://blogs.msdn.com/MainFeed.aspx";
string pathname = @"D:\result.html";
 
XPathDocument myXPathDoc = new XPathDocument(rssUrl);
XslTransform myXslTrans = new XslTransform();
 
[...]