Sending e-mail with attachments.This article describes how to send emails with attachments using System.Web.Mail namespace from an ASP.NET page. Full source code available for download.
Sending Email with ASP.NETSomething found on every web page today is an email form of some sort. In all probability this will not change anytime soon, therefore I will demonstrate today how to send email via ASP.NET: from plain to HTML mail and attachments.
Stress TestingIf your application is going out on the web and lots of people are going to use it, then stress testing is a required step to make sure your app doesn't crumble
StringBuilders ExplainedVisual Basic programmers have long enjoyed ease in string manipulations. It is easy to create a string, split it up, concatenate multiple strings, etc. For example, the following code sample illustrates how you could append one string to another to...