Blog

Window Live Mail Lanuch full version

Few days back Microsoft has announced it’s new next generation free mail services windows live mail. Microsoft has announces full version of it. Microsoft also giving beta tester logo for those who have used the Microsoft live beta version of mailing services.

Lazy in C# 4.0

Before C# 4.0 there was no on demand initialization by default. So at the time of declaration we need to create a value or object will be null or we have to create on demand initialization via coding.. But with C# 4.0 we now have lazy class. As per MSDN it support lazy initialization so

Ajax Realted Keyworkd for Search Engine Optimization

Following are the some Ajax related keywords for search engine optimization.AJAX Development India,Ajax Programming, Ajax Programming India, Ajax ASP.NET Development, Ajax ASP.NET Atlas Developement, Ajax, Ajax development, Ajax application development, Ajax javascript, Ajax programming, Ajax XML, Ajax java script, Ajax java script and XML, Ajax java, Ajax network, Ajax net, Ajax php, java Ajax, Ajax

How to send email from C# windows application

First find the System.Web.dll in your computer drive where .NET Framework installed Then add a reference to that dll in your C# windows application. then write following code to send email…. string smtpServer; smtpServer= “127.0.0.1”; System.Web.Mail.MailMessage msg = new System.Web.Mail.MailMessage(); msg.From = “From Email Address”; msg.To = “To Email Address”; msg.Body = “Body here”; System.Web.Mail.MailAttachment