Related 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.
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.
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.
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.
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).
PostBack to a different page
Tutorial on how you can PostBack from one page to another. By default in ASP.NET 1.0 and 1.1 PostBack is done to the same page. We will see how we can get around this. Also, you will see how the PostBackUrl property in ASP.NET 2.0 makes this easier.
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.
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.
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.
Sending an HTML and Plain Text E-newsletter with ASP.NET
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.
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.
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.
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!.
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.
Building Interactive User Interfaces
Microsoft ASP.NET AJAX: Providing Visual Feedback with the UpdateProgress Control. Microsoft's ASP.NET AJAX Framework helps page developers design more interactive web pages by streamlining the postback mechanism. In traditional web pages, a full postback involves the browser re-requesting the page, which is then re-rendered.
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.
ASP.NET 2.0 Script CallBack (Ajax like)
Learn about the new ASP.NET 2.0 feature which allows you to do CallBack (similar to PostBack) on a form without reloading the page. This technique similar to Ajax uses the ICallbackEventHandler interface.
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.
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.
How to determine what server is given web site running on using ASP.NET?
This comprehensive tutorial will walk you step-by-step to create a single ASP.NET page by which you'll be able to retrieve the server name of any given web site.
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.
Accessing MySQL Database with ASP.NET
In this step by step tutorial we will learn how to obtain, install, configure and run MySQL database on Windows. We will then move on to create a table in MySQL database, populate this table with some records and then display those records in the browser using an ASP.NET page.
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.
Displaying Emails from Mailbox on Gmail using POP3
In this tutorial, we will create the missing ASP.NET page, that was left in the previous tutorial (Connecting to Mailbox on Gmail and Fetching List of Emails using POP3 and ASP.NET), that takes an individual email's sort number on the POP3 server to retrieve and display it to the user after properly decoding content-transfer-encodings like base64 and quoted-printable.
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.
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.
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.
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.
Group validation in ASP.NET 2.0
This tutorial will teach you how to use the ValidationGroup property introduced in ASP.NET 2.0, which allows you to link validators to buttons, so that certain buttons in a form can only trigger certain validators.

Report
Adobe Fireworks
Adobe Flash
Adobe Illustrator
Adobe Image Ready
Adobe Photoshop
3D Studio Max
Cinema 4D
Maya 3D
Microsoft Excel
Microsoft PowerPoint
Microsoft Word
Microsoft Access
MySQL
C and C++
Python
Visual Basic
.htaccess
Adobe DreamWeaver
ASP
CGI & Perl
CSS
Java
JavaScript
Microsoft FrontPage
Windows Vista
Windows 7