Author: admin

  • Blog
  • Author: admin

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

Learning resources for ASP.NET MVC

I am getting lots of question regarding where to learn ASP.NET MVC. So I thought it will beneficial to write a blog post so that everyone get advantages of it. Today there are multiple resources available to learn ASP.NET MVC here I have listed some of the my favorite resources to learn ASP.NET MVC. Videos

The Famous MongoDB Document Database: Operations and Benefits

This is a guest post from Jenny Richards. Jenny Richard is a content maker for RemoteDBA.com which is one of the leading companies in the country which provides remote DBA support Services. You can find more about her at following social profiles. https://plus.google.com/u/0/114743495388960667319/posts https://www.linkedin.com/in/richardsjenny Over the last few years, a lot of enterprise attention has

Dependency Injection with Autofac: Registration Ordering

This post will be part of on going series for Dependency Injection with Autofac. If you have not gone through my previous post I would encourage you to go through it. Followings are links for that. Dependency Injection with Autofac – Getting Started Dependency Injection with Autofac – Constructor Injection Dependency Injection with Autofac- Modules