Send Emails in ASP.NET

The following two resources links shall deem useful: System.Net.Mail 4GuysFromRolla – Sending Email in ASP.NET 2.0 In addition, the MS tutorial video below also demonstrates a way to send email: How Do I: Create a “Contact Us” Page By Bryan Xu

CAPTCHA

CAPTCHA stands for “completely automated public Turing test to tell computers and humans apart”. It’s those distorted text in almost all the sites that require sign up these days, blog, emails, forums, etc. The Official CAPTCHA Site An ASP.NET Framework for Human Interactive Proofs The Code Project: CAPTCHA Image – A fundamental approach to create … Continued

Encrypt Configuration Information

Here’s the article from Scott Mitchell’s 4GuysFromRolla. Encrypting Configuration Information in ASP.NET 2.0 Applications Encrypting Connection Strings in Web.config By Bryan Xu

JavaScript Better Practices

This is from a post called ASP.NET AJAX Best Priactices on CodeProject, but after reading it I’ve rather call it as titled. Here is the general summary on this very very nice article: Use “var” whenever a variable is to be declared Reduce scopes (Try avoiding nesting, functions or loops) Use less DOM element concatenation … Continued

ASP.NET Membership

General knowledge: MSDN Security Developer Center ASP.NET 2.0 Security Guildlines ASP.NET Membership, Roles, Forms Authentication, and Security Resources ASP.NET Authentication ASP.NET Authorization System.Web.Security Namespace Membership: Introduction to Membership MSDN – Membership Class MSDN – MembershipUser Class MSDN – MembershipUserCollection Class By Bryan Xu