|
|
ASP.NET Tutorial 6: Outputting Data to the Webpage
by Matt on 2010/01/13 at 12:24 pm
This article explains the three primary methods of outputting data onto a webpage from the code-behind class: Labels, Literals, and the Response.Write() method. This article is also useful for gaining a basic understanding of how .NET handles communication between elements on the ASPX webpage and the C# code-behind class. Continue Reading this Article >>(C#) Sending an Email with an Attachment (via Form)
by Matt on 2010/01/04 at 10:58 am
This article explains how to send an email that includes an attachment from a web form. This is particularly useful if you need to create a web form that allows users to upload their own file attachments. The examples in this article assume that you already have a form with a FileUpload element in it, named “fuAttachment”. This particular method is especially useful since it does not require you to save any files to the server before sending the email. The posted data is instead handled directly. You should already by familiar with sending emails from ASP.NET before reading this article. Continue Reading this Article >> |