by Sandesh | Jul 5, 2010 | .Net
If you use Microsoft’s Outlook Web Access (OWA) to send or receive HTML file as email attachment, There might be change of corrupting the html file. Same html file opens without any issue on outlook express client. Microsoft Knowledge Base article 899394, OWA...
by Sandesh | Jul 3, 2010 | .Net
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...
by Sandesh | Jul 1, 2010 | .Net
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...
by Sandesh | Jun 30, 2010 | .Net, Sharepoint
When i started using Microsoft sharepoint Object Model, We started using SPListItem update method, Sharepoint OM providing the different approach to update the list item. So i decided to brief on the difference between Item Update and SystemUpdate method. Some...
by Sandesh | Jun 29, 2010 | .Net
You can send the mail using godaddy hosting acocount using .NET 2.0 System.Net.Mail code namespace. Here is a simple snippet of how to send an email message from “email@website.com” to multiple email recipients It uses the godaddy smtp server.(note that the To a CC...
by Sandesh | Jun 27, 2010 | .Net
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...