ASP.NET Emailing tutorials
If you're familiar with HTML and CSS, using ASP.NET, you can develop an e-newsletter easily as long as you keep the expectations of what can be achieved visually through email within reason. This article takes a completed web page and integrates the HTML markup into an ASP.NET web form that sends the email to a recipient of your choice.
Related Tutorials
Sending e-mail with attachments from an ASP.NET page.
The task of sending e-mails has become much easier in ASP.NET. In previous versions of ASP we either used a third party component or the limited functionality of CDONTS component for sending emails. The .NET framework provides simpler but powerful class libraries for sending emails.
File Uploading to Server Hard Disk using ASP.NET
In this article we will learn how to upload one or more files from the client browser to the server hard disk using plain ASP.NET. We will not be creating or making use of any commercial or home-made components, instead we will learn to make use of standard ASP.NET HTML controls which are part of ASP.NET 1.0.
Sending emails with ASP .NET
In this article, you'll see how sending email with ASP.NET is possible and then we'll go deeper to see how you can use HTML emails or include attachments.
Using ASP.NET Code-Behind Without Visual Studio.NET
One of the things that keeps coming up as a benefit of switching to ASP.NET is the ability to use code-behind to separate display code from application logic. In Visual Studio.NET, this is 'automagically' done for you. So what if you don't have VS.NET? Here's how you can implement code-behind using just a plain old text editor and the tools included in the .NET Framework... no VS.NET required!" Source codes available for download.
File Uploading to Access Database using ASP.NET.
In this article we will learn how to upload one or more files from the client browser to a Microsoft Access database using plain ASP.NET. We will not be creating or making use of any commercial or home-made components, instead we will learn to make use of standard ASP.NET HTML controls which are part of ASP.NET 1.0. Uploading files to Microsoft Access is very useful and we'll learn in this article how to do that.
File Uploading in ASP.NET Using C#.
This article guides you through the file uploading process. In classic ASP we would use the HTML file control for uploading files. In ASP.net we replace this with the ASP.NET HTML File control.The declaration of ASP.NET HTML file control is much like normal HTML file control except for the runat attribute set to server.
Input Data to Display Newlines in ASP.NET
In asp.net input taken from a plain text box will not display newline characters (Hitting the enter key) when outputting to the browser.
Sending E-Mails using ASP.NET
In this tutorial we will learn how to send e-mails of both text and HTML formats using classes of System.Web.Mail namespace.
Sending emails with attachments
To send emails with attachment in asp.net using C# is quite easy. I have already written two tutorials that discuss sending emails in asp.net using C#. If you not read these tutorials then please read them first. If you want to send attachment with email in asp.net using C# then heres the code that should be added in the sendEmail() function that I already discuss in my tutorials .
Your first ASP.NET Page.
ASP.NET is an exceptionally remarkable technology for building web applications. We begin exploring ASP.NET pages with this first article. In this article we'll learn : * From where to download ASP.NET premium edition? * The installation process. * Developing your first ASP.NET page. * Running and testing your ASP.NET page.
Sending email in ASP.NET
This tutorial will show you Sending email in ASP.NET.
ASP.NET Application Fundamentals
This tutorial covers the fundamentals involved in building an ASP.NET application. From a syntactical point of view, writing .NET code is similar to writing the classic ASP code that you may have seen during the late dot-com era. Many of the key symbols remain the same, and even some of the syntax survives. However, the entire underlying execution model changed dramatically between classic ASP and ASP.NET. Whereas executing classic ASP pages was primarily an exercise in rendering HTML, interpreting script code, and calling Component Object Model code, ASP.NET introduces an entirely new object-oriented execution model.
ASP.NET For Beginners
What is ASP.NET? ASP.NET is "ASP" + ".NET". ASP.NET is the latest version of Microsoft's Active Server Pages technology (ASP).
ASP.NET: An Introduction
ASP.NET is not just the next version of ASP: it's the next era of web development. ASP.NET allows us to use a fully featured programming language (such as C# or VB.NET) to build web applications easily. In this article, John talks about the fundamentals of ASP.NET and some of its powerful features such as web services, the MSDN library and several learning resources.ASP.NET allows you to use a full featured programming language such as C# (pronounced C-Sharp) or VB.NET to build web applications easily.
Sending e-mail with attachments from an ASP.NET page.
This article describes how to send emails with attachments using System.Web.Mail namespace from an ASP.NET page.
Configurations
This tutorial introduces the method in which ASP.NET manages configuration information. It gives a taste of how ASP.NET configuration works. We'll see details about ASP.NET configuration in later tutorials. ASP.NET is a feature-rich system for developing and deploying Web sites. The features we'll see in more detail as we examine ASP.NET further include some the following: *session state *caching content to help optimize your Web site's responses *tracing requests *mapping specific file extensions to custom handlers *authenticating users.
Visual Basic .NET Developer's Guide to ASP.NET, XML and ADO.NET : Page Framework
Sample chapter from "Visual Basic .NET Developer's Guide to ASP.NET, XML and ADO.NET" on ASP.NET controls, code-behind, Page object, web controls, HTML controls and Page object reference.
Getting Posted ASP.NET MVC Form Data
In this article, Brendan describes how to interact with the data posted using HTML forms in ASP.NET MVC. He gives code snippets and screenshots showing how to get data posted from the HTML form.
Generating Text Images on the Fly with ASP.NET
Have you ever needed to have an image of some text generated dynamically on the fly? There are tons of possible applications for this type of thing which I won't go into, but prior to ASP.NET it was a relatively difficult thing to do.
File Uploading in ASP.NET Using C#
File uploading has always been a tedious task for the web developer community. Either we have to use a third party component or write several lines of code. With the advent of ASP.NET file uploading has become a lot easier, importantly without the need for third party components. All we have to do is to use the ASP.NET HTML File control and write a few lines of C# code.
Introduction to Microsoft's .NET Platform
This article briefly describes Microsoft.NET, ASP.NET, C#, VS.NET, VB.NET, ADO.NET, XML Web Services, VISUAL J#.
A Fast-Track Guide to ASP.NET
Since then, mailing lists, newsgroups, and web sites have sprung up containing a mixture of code samples, applications, and articles of various forms. Even if you're not a programmer using existing ASP technology, it's a good bet that you've at least heard of .NET, even if you aren't quite sure what it involves. After all, there's so much information about .NET, that it's sometimes hard to filter out what you need from what's available. With new languages, new designers, and new ways of programming, you might wonder exactly what you need to write ASP.NET applications.
An Overview of ASP+
Well by now many of you have probably heard, or at least caught wind of the fact, that the next version of ASP is not going to be ASP 4.0. It is instead going to be called ASP.NET, and what a difference that little change makes. I've seen the future and it's called ASP.NET!.
Viewing/Adding/Editing/Removing Records from MySQL using ASP.NET DataGrid control
In this tutorial we'll learn how to display, insert, edit and delete records from MySQL database using the same ASP.NET DataGrid control on a single ASP.NET page. We'll also learn how to validate user input using ASP.NET Validation controls.
Integrating ASP.NET XML Web Services with Classic ASP Applications
This article examines how to can create a Web service in .NET and then utilize it from a classic ASP page on your Web server, thereby providing an API that can be utilized by both your ASP.NET Web pages and classic ASP pages.
Writing Your First ASP.NET Page
Given that all the prerequisites and ASP.NET are installed, this tutorial walks you through writing ASP.NET pages of your very own.
Getting Started With ASP.NET
A Sample Chapter from "Beginning ASP.NET using VB.NET". Topics covered include: Static Web Pages Dynamic Web Pages; An overview of the different technologies for creating dynamic web pages, including ASP.NET; Installing Internet Information Services (IIS); Installing the .NET Framework; and Testing and Troubleshooting your installation.
Sending Mass E-Mails using ASP.NET
How to validate user input i.e. what if user enters nothing or enters invalid information in the HTML form input boxes and how to send mass emails to a list of email addresses without the user knowing that the same email has been sent to other users as well.
Submitting Web Form data from one ASP.NET page to another
This article discusses different options you as a developer have in ASP.NET to send data from one ASP.NET page to another. Since you cannot use ASP.NET Web Controls (System.Web.UI.WebControls) in such a scenario (which only allow posting back of data to the same page), this article discusses other ways like using HttpContext object.
The ASP.NET Page Life Cycle
This article describes the life cycle of an ASP.NET page from initialization to unloading. Also shows the various methods to override ASP.NET server-side events. Source code available for download.
Excerpt from ASP.NET MVC Framework Unleashed
This chapter provides you with an overview and introduction to the Microsoft ASP.NET MVC framework. The goal of this chapter is to explain why you should build web applications using ASP.NET MVC.
Introduction to ASP.NET Mobile
This article will give you an idea of how to develop mobile web applications using ASP.NET and the Microsoft Visual Studio .NET environment. It will describe some of the most important mobile specific controls but won't go deep into the subject.
A Practical Comparison of ADO and ADO.NET
Since "classic" ASP's humble beginnings, ADO data access classes and methods have been re-written to form ADO.NET. This article looks at the differences (in terms of classes, methods, and calling conventions) that exist between ADO and ADO.NET. It provides several practical examples that show us how to evolve from using ADO with ASP to using ADO.NET with C# and ASP.NET.
What is ASP.NET?
This article provides an overview of ASP.NET including the advantages and disadvantages.
Connecting to a SQL database from ASP .NET II
This is part II of the tutorial that teaches you how to connect to a SQL database from ASP .NET using SQL Authentication. This part shows you how to connect to the database using ASP .NET code and Visual Studio .NET's features.
Updation of records using C#
In this tutorial we will learn how to perform the updation of records in asp.net using C#. First of all we will show all records coming from database in gridview and then using gridviews built in event RowEditing we will perform updation of records in asp.net using C#. To perform editing/updation of records in asp.net using C# is quite easy .
Setting up your ASP.NET server (IIS)
A guide that shows you how to install IIS server and configure it to work with ASP.NET, not just with ASP.
Connect to MySQL from ASP.NET
In this article I'll explain the necessary steps to connect to MySQL from ASP.NET. We will connect to our MySQL database using ODBC .NET data provider and DSN-less connection.
Control Potpourri
ASP.NET has always evolved with the goal of reducing the effort developers must expend to get their Web sites up and running. One of the things you'll find as you tour ASP.NET is that Microsoft has done a great job of anticipating what the developer needs and putting it in the framework.
Logging In
This tutorial covers: *Manage Web-based security *Implement Forms Authentication *Work with Forms Authentication in the raw *Work with ASP.NET login controls to make writing login pages painless *Work with ASP.NET role-based authorization This tutorial covers managing access to your ASP.NET application. Web site security is a major concern for most enterprises. Without any means of securing a site, the Web site can expose areas of your enterprise you may not want exposed. We'll take a quick look at what security means when it comes to Web applications. Then we'll look at various services available within ASP.NET for authenticating and authorizing users.
 
Categories