




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 [...]
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 [...]
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 [...]
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 [...]
An oft repeated question on the online message-boards is how to make web pages render & behave the same in IE, Firefox and other popular browsers. This does not have an easy answer. The incompatibilities are due to the browser wars & the host of non-standard HTML & scripting features that the different browsers have introduced.