If you do not have an SMTP server of your own, you can still send SMTP authenticated emails from your .net application. Just sign up for a brand new gmail account or use your exisiting gmail account. SmtpClient obj = new SmtpClient(“smtp.gmail.com”,465); //465 is the TCP port for sending emails using gmail. 465 is generally …
Changing the IP address of the server using asp net
Changing the IP address of the computer automatically is very easy. Microsoft trickily stores the IP information in registry. Refer the below code that changes the IP address of the host server. This can be used in windows application or windows services to change the IP address of the local computer and can also be …
Fetching domain whois information using asp.net
There are several domain whois checking websites available today. For example, who.is and domaintools.com are broadly used. It is very easy to develop such web application of your own. All you need to query the whois server for a domain in question. Here is the sample code, that fetches the whois information associated with the …


Recent Comments