Free, Open-Source ASP.Net 2.0 Framework for Data-Driven Websites
ASP.Net Web Server Controls are one of the most powerful features in ASP.Net. We use them in a several places to help us build complex user interfaces with very little code in each page.
Included with UnifiedASP are four extended server controls that we use regularly. This control pack can be downloaded by itself and added to any project. Follow the links below for detailed information about each.
To use any of the controls, you’ll need to add a reference to the dll and specify them in the page or in web.config. We used the web.config approach by adding the following lines within the controls tag.
<system.web> <pages enableViewState="false"> <controls> <add tagPrefix="asp" assembly="UnifiedASPControls" namespace="UnifiedASP.Controls.TextBoxX" /> <add tagPrefix="asp" assembly="UnifiedASPControls" namespace="UnifiedASP.Controls.ValidationSummaryX" /> <add tagPrefix="asp" assembly="UnifiedASPControls" namespace="UnifiedASP.Controls.GridViewX" /> <add tagPrefix="asp" assembly="UnifiedASPControls" namespace="UnifiedASP.Controls.ButtonX" /> </controls> </pages>