Hosts file for run a domain in your local machine

I sincerely thanks to @meetbala , for share this with me. I added Hosts file for run a domain in your local system demo video too at below.. The hosts file is a computer file used in an operating system to map hostnames (shareourideas.com) to IP addresses. Hosts file is one of several system facilities to assist in addressing network nodes in a computer network. It is a common part in a operating system's Internet Protocol (IP) implementation, and serves the function of translating human-frien...
More

ASP.NET Security Vulnerability and prevent that

Patch to fix the ASP.NET Security Vulnerability is now available on Windows Update : ASP.NET Security Update Now Available on Windows Updates http://weblogs.asp.net/scottgu/archive/2010/09/30/asp-net-security-fix-now-on-windows-update.aspx -- Updated on 01st-Oct-2010 Official patch released : ASP.NET Security Update Now Available http://weblogs.asp.net/scottgu/archive/2010/09/28/asp-net-security-update-now-available.aspx -- Updated on 29th-Sep-2010 In this post I am going say something about ASP...
More

How to add Alternate views for email in C#.net

Use the AlternateViews property to specify copies of an e-mail message in different formats. For example, if you send a message in HTML, you might also want to provide a plain text version in case some of the recipients use e-mail readers that cannot display HTML content. Code :- using System.Net.Mail; // import System.Net.Mail; //serverDetails - Your smtp server details //recipient    - To mail ID public void MultipleViewsMailSend(string serverDetails, string recipient) { MailMessage msg = ne...
More