We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Xavier Larrea Profile

photo Xavier Larrea (jxlarrea)
19 Jan 2006
Guayaquil Ecuador
Developer
http://devel.oping.net
Contact memberContact this Member Edit ProfileEdit my profile

This user has contributed 0 articles, 5 code samples and posted 0 messages in our discussion forums.

Technology Interests

      Blogs

    • devel.oping.net

      A place to learn about programming, tips & tricks and techniques using the .NET Framework, SQL Server, standards & accesibility. Read full article

      Code Samples

    • Url Rewriting with Regex for ASP.NET 2.0

      by jxlarrea

      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.. Read full article

    • Encrypting Web.config sections in ASP.NET 2.0

      by jxlarrea

      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!. Read full article

    • Transactions made easy with .NET 2.0

      by jxlarrea

      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.. Read full article

    • Database Independent ADO.NET 2.0

      by jxlarrea

      ADO.NET 2 has new classes that makes it quite easy to write data-programs independent of the database engine. Learn how here.. Read full article

    • The "Using" Statement in C#

      by jxlarrea

      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.. Read full article