Binding Data to Data Web Controls

4GuysFromRolla – Binding a Scalar Array to Data Web Control The ASP.NET data Web controls can display any data that implements either the IEnumerable interface or the IListSource interface. They are bound through two lines of codes: The object is assigned to the data Web control’s DataSource property The data Web control’s DataBind() method is … Continued

4GuysFromRolla – Admin Page

Admin pages are necessary for websites with login capabilities. Just couple links on the topic: 4GuysFromRolla – Rolling Your Own Website Administration Tool – Part 1 4GuysFromRolla – Rolling Your Own Website Administration Tool – Part 2 By Bryan Xu

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