Supporting Templates with ASP.NET User Controls
Posted by: ScottGus Blog,
on 04 Jun 2006 |
View original | Bookmarked: 0 time(s)
ASP.NET User Controls (those files with the .ascx extensions) provide a really easy way to encapsulate functionality within an application, and allow it to be re-used across multiple pages and projects (note: for a tutorial on how to create re-usable user control libraries with the VS 2005 Web Application Project check out the C# one here, and the VB one here).
Most developers who create user-controls know that it is possible to easily expose public properties from them so that you can...