

Introduction
Fed up with ‘Flash’? Getting annoyed with animated gifs? Well, why not try an alternative – CSS Flick Animation.
This is a method of animation that requires some interaction with your visitors, making a visit to your web site a more enjoyable experience for them, and maybe tempting them to [...]
This article is written by Marc Benioff, chairman and CEO of salesforce.com. He has been widely recognized for pioneering innovation with honors such as the 2007 Ernst & Young Entrepreneur of the Year, the SDForum Visionary Award, Alumni Entrepreneur of the Year by the University of Southern California (USC) Marshall School of Business, and being [...]
One of the most challenging parts of the web design process is getting design sign off. It can prove time consuming, demoralizing and if you are not careful can lead to a dissatisfied client. What is more you can end up with a design that you are ashamed to include in your portfolio.
How then can [...]
Thinking 2.0
As web geeks, we have a thick skin towards jargon. We all know that “Web 2.0†has been done to death. At Blue Flavor we even have a jargon bucket to penalize those who utter such painfully overused jargon with a cash deposit. But Web 2.0 is a term that has lodged itself into [...]
Use the free open-source online service – Browsershots. Browsershots makes screenshots of your web design in different browsers.
All you need to do is specify for which of the 40 browsers on Linux, 12 browsers on Windows & 4 browsers on Mac OS you want your screenshots and submit your web address. You can optionally configure [...]
This is derived from a forum posting.
System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage();
System.Net.NetworkCredential cred = new System.Net.NetworkCredential(“yourid@gmail.com”, “yourpwd”);
mail.To.Add(“acme@acme.com”);
mail.Subject = “subject”;
mail.From = new System.Net.Mail.MailAddress(“yourid@gmail.com”);
mail.IsBodyHtml = true;
mail.Body = “message”;
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient(“smtp.gmail.com”);
smtp.UseDefaultCredentials = false;
smtp.EnableSsl = true;
smtp.Credentials = cred;
smtp.Port = 587;
smtp.Send(mail);
System.Net.Mail is the namespace used to send email if you are [...]