This user has contributed 0 articles, 5 code samples and posted 0 messages in our discussion forums.
Blogs
-
A place to learn about programming, tips & tricks and techniques using the .NET Framework, SQL Server, standards & accesibility. 
Code Samples
-
A new feature in ASP.NET 2.0 is it's built-in url rewriting support. When i looked into this new feature I found that it lacked regular expressions support, which is really the point of an Url Mapper. So, this code demonstrates how to create a Url Rewriting Module with Regex support in ASP.NET.. 
-
Learn how to encrypt any section of your Web.config file on-the-fly and programatically; plain-text connection strings in your config file are no more!. 
-
One of the more significant improvement in .NET 2.0 is the transactions area. Now with a single line it becomes extremely easy to support transactional code blocks using the concept of “ambient” transaction thanks to TransactionScope in the System.Transactions namespace.. 
-
ADO.NET 2 has new classes that makes it quite easy to write data-programs independent of the database engine. Learn how here.. 
-
The using statement in the c# language allows us to define an scope for an object lifetime. This statement obtains the resource specified, executes the statements and finally calls the Dispose() method of the object to clean it up.. 