Dim EmailAddress As String
'set EmailAddress to a value retrieved from the database dynamically
Dim mailStr= ("mailto:" & EmailAddress)
System.Diagnostics.Process.Start(mailStr)
With mailto, does it use the customer's or the web server's default mail client to open an Outlook message?
Also, does the web server must be able to send email through Outlook Express? If it uses the customer's mail client to send email then the web server does not need to be configured to open a message or send a message, correct?
Somehow that code works for localhost which has Outlook but not on other web server which has Outlook Express.