Library tutorials & articles
ASP.NET Controls Explained: Part 1/2
Introduction
One of the best things about ASP.NET is the ability to easily separate code into different modules, unravelling presentation code from application logic. This allows developers with different skills sets to work on their area of speciality simultaneously (e.g. web designers working on HTML code while programmers work on ASP.NET code). Because of its object-orientated nature, ASP.NET also promotes code reuse.
In ASP.NET, there are several features that we can use to make our code reusable and independent of other code. These features are: user controls, server controls, HTML controls, custom controls, components, and the code behind method.
In this article, I will explain what each of these features are used for, and also show you how to use each one, by providing a number of simple yet detailed examples. To work with the examples in this article, you should have the .NET SDK installed on your Windows 98, NT, 2000, or XP machine. It can be downloaded free from MSDN.
Related articles
Related discussion
-
"how to implement varifiaction code in registration page?"
by Slicksim (1 replies)
-
control inherirting from gridview
by tejesh.shelar (0 replies)
-
asp.net ajaxtoolkit installation
by Slicksim (1 replies)
-
An Introduction to VB.NET and Database Programming
by bitkisel (13 replies)
-
How to Build a Webservice in ASP.Net
by Pratheej (0 replies)
Related podcasts
-
ASP.NET 4.0 and Visual Studio 2010 Enhancements
Scott Hunter brings a summary of the new features coming in ASP.NET 4.0 and Visual Studio 2010. Learn why you'll never have to type runat="server" again!
Events coming up
-
Mar
23
DevWeek 2009
London, United Kingdom
DevWeek is Europe’s leading independent conference for software developers, database professionals and IT architects, and features expert speakers on a wide range of topics, including .NET Framework 4.0, Silverlight 2, WCF 4.0, Visual Studio 2010, RESTful services, Windows Workflow, ASP.NET AJAX 4.0, SQL Server 2008, LINQ, C# 3, .NET Patterns, Ruby, and more.
It guides you step by step and helps you get a beeter idea about how user controls work.
This thread is for discussions of ASP.NET Controls Explained: Part 1/2.