Asp.net sending email with zip file as attachment

In this article I would like to explain how to send the compressed or zip document as an email attachments. You can find the c# source code sample how to send the email with zip format. If you are sending the html attachment or some JavaScript there might be change...

Asp.net file compression using opensource library

In this article I’m going to explain how to create the zip file using C#. As we know .net does not support the compression by default we need to use the third part open source or paid control this purpose.  In this article I’m going to review open source compressing...

Singleton pattern – Design pattern

Singleton pattern is the one of the best known pattern in the software engineering. The singleton pattern is a design pattern that is used to restrict instance of class to one object, and usually gives simple access to that instance. Most commonly, singletons...