Archive for December, 2006
Saturday, November 29, 2008 10:16
The CTP of Enterprise Library 3.0 was released last Friday.One of the new application blocks it contains is a Validation Application Block for validating classes in your applications.David Hayden wrote 4 tutorials on how to use it:
Validation Application Block in Enterprise Library 3.0 – Using Validation Facade Class – Part I
Validation Application Block in Enterprise [...]
Saturday, November 29, 2008 10:16
This article explains how to manage database of ASP.NET 2.0 Membership & Role services in non-ASP.NET context.
Technorati tags: database, dotnet, asp.net
Bookmark It
Hide Sites
$$(‘div.d786′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });
Saturday, November 29, 2008 10:16
Written in C#, WatiN emulates the relevant portions of browser behavior, including form submission, JavaScript,cookies and automatic page redirection, and allows C# test code to examine returned pages either as containers of forms, tables, and links. When combined with a framework such as NUnit, it is fairly easy to write tests that very quickly verify [...]
Saturday, November 29, 2008 10:16
Internet Explorer 7 introduces a unified approach to RSS. The good thing about it, is its availability for developers to consume the RSS feeds of the end-user, for example to build a custom RSS aggregator. Programs like the Windows Sidebar in Vista, the Windows Live Mail Desktop client, Outlook 2007 leverage the power of this [...]
Saturday, November 29, 2008 10:16
I will use the following XML document in the example below.
<?xml version="1.0" encoding="utf-8" ?>
<users>
<user FirstName="Tom" LastName="Adams" Age="23" />
<user FirstName="Jhon" LastName="Brams" Age="17" />
<user FirstName="Bill" LastName="Smith" Age="33" />
</users>
The code prints out all the user nodes of the users node that have an age with a value greater than 17.
// Read the [...]