ASP.NET

Send mail in ASP.NET via GMail account

Good morning, In this post, I want to show a simple code that demonstrate how to send a email in ASP.NET application via a GMail account. Now, open Visual Studio 2005/2008 and create new ASP.NET project. Declare this assembly below: using System.Net; using System.Net.Mail; Use this function, modify if needed public static bool SendMail(string to) { MailMessage mail = new MailMessage(); mail.To.Add(to); mail.Bcc.Add(n...

Authentication account Joomla on ASP.NET applications

Authentication account Joomla on ASP.NET applications Introduction Browse the article headline, I know some of you have ever studied by Joomla and ASP.NET will be surprised. Because Joomla is developed in PHP language, ASP.NET is a language is different from PHP so much. Otherwise, the environment operate them also diffirent, PHP running on Linux, ASP.NET on Windows operating system. Two months ago, I have developed a website as follows: This website uses Joomla and have run a few m...