Library tutorials & articles
Introduction to custom server controls
Overview
This article will serve as an introduction to developing custom server controls, but it is by no means meant for people who do not have a decent understanding of C#.
In this article I'll guide you through the creation of a guestbook that you can use on your site or whatever. The guestbook will be organized like this:
- GuestbookForm.cs - This will be the control that allows users to sign the guestbook
- GuestbookRepeater.cs - This will be the control that displays all the entries in the guestbook
- XmlEngine.cs - This class will control the retrieval and insertion of guestbook entries from the XML file
- Guestbook.xml - This XML file will hold all the guestbook entries
Ok, we're just about ready to start developing this little application, but I just though I'd mention that the XmlEngine class will not be described in detail as I assume you understand what is going on there when you see it.
Well enough of this, let's start off by developing our XmlEngine class then...
Related articles
Related discussion
-
Sheduling and sending mails asp.net
by mr_rajesh86 (0 replies)
-
asp.net add datarow to existing dataset table
by janetb (1 replies)
-
Buy cheap Xanax overnight. Cheap Xanax. Overnight delivery of Xanax in US no prescription needed. Cheapest Xanax.
by asleymar (0 replies)
-
Buy Soma online without a prescription. Soma drug no prescription. How to get Soma prescription. Soma cod accepted.
by asleymar (0 replies)
-
Cheap online order Fioricet. Cheap discount Fioricet. Offshore Fioricet online. How to buy Fioricet online without a prescription.
by asleymar (0 replies)
Related podcasts
-
StackOverflow uses ASP.NET MVC - Jeff Atwood and his technical team
Scott chats with Jeff Atwood of CodingHorror.com and most recently, StackOverflow.com. Jeff and Joel Spolsky and their technical team have created a new class of application using ASP.NET MVC. What works, what doesn't, and how did it all go down?
Events coming up
-
Mar
15
DevWeek 2010
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 4.0, Silverlight 3, WCF 4, Visual Studio 2010, REST, Windows Workflow 4, Thread Synchronization, ASP.NET 4.0, SQL Server 2008 R2, LINQ, Unit Testing, CLR & C# 4.0, .NET Patterns, WPF 4, F#, Windows Azure, ADO.NET, Entity Framework, Debugging, T-SQL Tips & Tricks, and more.
This thread is for discussions of Introduction to custom server controls.