The Cloud
.NET 2007 2008 Adobe Ajax Analytics ASP.NET Avatar Backup BarCamp Beta Blog Bounce Rate Browser Bug C# coComment Development Dropbox Exams Exception Fiddler Firefox Fun Google IIS IT Javascript Joost Mauritius New Year Photo Search Engine SEO Social Network Software Theme Vinivi Wallop Web Web 2.0 Windows Live Writer WordPress Work YahooArchives
- October 2008 (1)
- September 2008 (4)
- August 2008 (4)
- July 2008 (3)
- June 2008 (9)
- May 2008 (7)
- January 2008 (4)
- December 2007 (2)
- October 2007 (4)
- September 2007 (1)
- August 2007 (2)
- June 2007 (1)
- May 2007 (9)
- April 2007 (1)
- March 2007 (3)
- February 2007 (2)
- December 2006 (5)
- November 2006 (4)
- October 2006 (18)
Category Archives: C#
Merge pdf files using C#
Recently I had to create an assembly component using C# to merge multiple PDF files into one file. The specification was pretty straight forward: 1) Merge two of more PDF document into a single output PDF File. 2) Used on … Continue reading
Posted in .NET, C#, Software
2 Comments
Copy-Clone custom object in C#
This post relates how to Copy/Clone custom object in C# (Deep and Shallow Clone). In this example I will be having a base class that all my custom object will be inheriting from. Updates: After quiet some research on the … Continue reading
ASP.NET: HyperLink and Label without Id attribute
Today, I’ll talk a bit about how ASP.NET handles HTML rendering of controls such as <asp:HyperLink> and <asp:Label>.
Exception: Collection was modified; enumeration operation may not execute.
It’s been a while that i didn’t get this Exception, while working, and yesterday, while I was performing some test on
Copy custom object in C#
There are several ways to clone custom object in .NET. Using reflection to get information about each field and properties in the custom class, create a new instance and assign the proper value. Manually implementing the clone method and assign … Continue reading