August 8, 2009
.NET Framework doesn’t have any built-in functionality to receive the e-mail, but it’s quite easy to send e-mails via SMTP protocol.
VB.NET and C# versions of the code
First, import appropriate namespaces.
View Code VBNETImports System.Net.Mail
Imports System.Net
View Code CSHARPusing System.Net.Mail;
using System.Net;
Then, you have to create an instance of SmtpClient class.
View Code VBNETDim client As New SmtpClient
View Code CSHARPSmtpClient [...]
Read the full article →
August 4, 2009
First part here: http://johnwilliams.eu/2009/05/how-to-deploy-net-webservice-step-by-step-tutorial/
Step 3:
Open IIS (Start > Administrative Tools > Internet Information Services). If it’s not there, you need to install it via “Control Panel > Add or Remove Programs > Add/Remove Windows Components”. Additionally, you may need to enable “Administrative Tools” in the start menu (right-click start menu, properties, customize, “advanced” tab, scroll [...]
Read the full article →