Bound Boolean Column | This is a databound column for the DataGrid which provides easy editing of Boolean values. It has a few modes, checkbox, radiobutton list, and dropdownlist. |
Bound Lookup Column |
This is a databound column for the DataGrid which provides a DropDownList in edit mode. It is most usefull for data fields which are lookups to other tables. |
CheckedListBox Control | Displays a ListBox in which a check box is displayed to the left of each item. |
ComboBox Control | This is an emulation of the Windows.Forms ComboBox. It is the combination of a Textbox, with a DropDownList. For browsers with good script and css support, the control will display as a normal ComboBox. |
Confirmed Buttons Control | This is a collection of buttons which request confirmation from the user before posting back to the server. Included is a normal button, a link button, and an image button. |
CustomForm Control | This control allows a server form to post to any url you want. It's simply a matter of setting the Action property of the form. |
DefaultButtons Control | This non-visual control allows you to assign a button to the "enter-pressed" clientside event of input controls. This makes it so that when the user presses Enter while in a textbox, the form will postback, and the serverside click event of your button is fired. The is done on a per-input-control basis.
|
DialogWindow Control Set | This is a framework for displaying dialog windows in your asp.net application.
|
DualList Control | The DualList is a control designed for the passing items from an available list of items to a "chosen" list of items.
|
DynamicListBox Control | The DynamicListBox is a ListBox which can retrieve and persist any client-side changes to its Items collection.
|
ExpandingButtons Control Set | This is a set of the expanding buttons, they all are targeted at the same asp:Panel control.
|
ExpandingPanel Control | This is a panel which expands and contracts with a button. It is templated, so you can make it look however you want.
|
FileUpload Control | TThis is a better implementation of the file uploading html element. It has all the functionality of the built-in HtmlInputFile control, but includes server side styles and events like other WebControls.
|
FirstFocus Control |
This control creates the proper javascript to give focus to control after the page has loaded.
|
GlobalRadioButton Control | This is an enhancement for the built in RadioButton control. It supports the idea of having a page-level, global GroupName.
|
ListLink Control | The ListLink control creates a parent/child relationship between two lists. It is DataBound on the server side, and generates the neccessary clientscript to do everything dynamicly on the client.
|
MasterPages Templating Framework | A version of the MasterPages components released by the asp.net team. What has been added is the ability to nest regions, so you could have a basic master that defined a header and footer, a second level master that defined left and right columns within the basic master, and a content pages can choose which master they want to use.
|
NestedRepeater | The NestedRepeater is a Repeater control which is designed to display child records of a hierarchal dataset. With the NestedRepeater, it is not neccessary to set the datasource of the nested repeater, but only to declare the DataRelation which the child records will come from.
|
OneClick Control | The OneClick control allows a page developer to determine if the user has submitted a form more than once without waiting for the first submision to complete.
|
ParsingContainer Control | This is a non-visual control which parses a string of html which may include asp.net server controls.
|
QueryCall Component | The QueryCall component maps QueryString commands to method calls on the Page handling the request. This allows a developer to call methods on other pages with a QueryString parameter with a simple link.
|
RemoteWindow Control |
This is a subclass of HyperLink which makes it easy to open the link in a "remote" or ( sorry ) "popup" style window, with no adornments or buttons..
|
ResizeMonitor Control | The ResizeMonitor control raises server-side events when the user changes their browser window size.
|
RollOverLink Control | This is a subclass of HyperLink which includes a RollOverImageUrl property. It's just an easy way to create the classic image rollover.
|
RowSelectorColulmn DataGrid Column | This is a column for the DataGrid which has a single radiobutton or checkbox in each row. On postback, you can query the column for the currently selected row(s).
|
RuntimeTemplate Component | RuntimeTemplate makes it easier to create templates completely via code.
|
ScrollingPanel Control | This is a subclass of Panel which includes scrollbars. The scroll position is persisted across postbacks via script.
|
TypeValidators Control Set | These are a couple simple validators that work with the validation framework. Both are already somewhat supported in the builtin validators, but these are more flexible. Most notably, the DateTimeValidator supports time values, and the CurrencyValidator supports a wider range of currency strings. They use VBScript on the clientside, so only browsers supporting VBScript ( IE for now ) have clientside validation.
|
UpDown Control | This is an emulation of the Windows.Forms NumericUpDown. It is the combination of a Textbox, with an up and down pair of buttons.
|