AutoComplete is an ASP.NET AJAX extender that can be attached to any TextBox control, and will
associate that control with a popup panel to display words that begin with the prefix typed into
the textbox.
The AnimationExtender is a simple extender that allows you to
utilize the powerful animation framework with existing pages in an easy, declarative fashion. It
plays animations whenever a specific event like OnLoad,
OnClick, OnMouseOver, or
OnMouseOut is raised by the target control.
The AlwaysVisibleControl is a simple extender allowing you to pin controls to the page so that they
appear to float over the background body content when it is scrolled or resized. It targets any ASP.NET
control and always keeps the position a specified distance from the desired horizontal and vertical sides.
The ASPxUploadControl allows end-users to upload files to the web application's server.
In this demo, the ASPxUploadControl's client and server
functionality are used to upload an image file to the server, create the
image's thumbnail and display the thumbnail image within a specific
placeholder on the web page.
Introduction Many times now we have encountered the concept of progressive enhancement.To reiterate, this philosophy ensures a positive user experience for all users by mandating that a working product be put in place first, before additional.
FilteredTextBox
is an extender which prevents a user from entering invalid characters into a
text box. Note that since this effect can be avoided by deactivating
JavaScript, you should use this extender as a convenience for your users, but
you must never expect that the data being sent to the server consists of
"valid" chars only.
MaskedEdit
is an ASP.NET AJAX extender that attaches to a TextBox control to restrict the
kind of text that can be entered. MaskedEdit applies a "mask" to the
input that permits only certain types of characters/text to be entered. The
supported data formats are: Number, Date, Time, and DateTime. MaskedEdit uses
the culture settings specified in the CultureName property. If none is
specified the culture setting will be the same as the page: English (United
States).
Description:
MaskedEditValidator
is a custom validator which attaches to the MaskedEdit extender and its
associated TextBox and verifies that the input text matches the pattern
specified in the MaskedEdit extender. Once associated with a validation group,
server- and client-side validation can be performed and used to display
messages.
PagingBulletedList
is an ASP.NET AJAX extender that can be attached to an ASP.NET BulletedList
control and provide client-side sorted paging. It is very flexible and lets you
specify either the number of characters used in the heading indices or the maximum
number of items to display per index. If the input is not sorted (either on the
server or client), it will generated more header indices but still function
appropriately.
HoverMenu
is an ASP.NET AJAX extender that can be attached to any ASP.NET WebControl, and
will associate that control with a popup panel do display additional content.
When the user moves the mouse cursor over the main control two things happen:
Description:
1.The popup panel is displayed at a position
specified by the page developer (at the left, right,
top, or bottom of the main control)
2.Optionally, a CSS style is applied to the
control to specify it as "hot"
NumericUpDown
is an ASP.NET AJAX extender that can be attached to an ASP.NET TextBox control
to add "up" and "down" buttons that increment and decrement
the value in the TextBox. The increment and decrement can be simple +1/-1
arithmetic, they can cycle through a provided list of values (like the months
of the year), or they can call a Web Service to determine the next value. Page
authors can also provide custom images to be used instead of the default
up/down button graphics.
Description:
The display
of the default up/down buttons in Safari is such that Safari's
"shiny" button style makes the up/down arrows difficult to see.
Custom images can be used for complete control over the appearance.
ValidatorCallout
is an ASP.NET AJAX extender that enhances the functionality of existing ASP.NET
validators. To use this control, add an input field and a validator control as
you normally would. Then add the ValidatorCallout and set its TargetControlID property
to reference the validator control.
Description:
The callouts
do not currently display automatically after a server post-back and will only
work for custom validators which utilize client-side validation. Even after a
post-back the callout will display when the form is re-validated when a
postback is attempted again.
The Slider
extender allows to upgrade an asp:TextBox to a graphical slider that allows the
user to choose a numeric value from a finite range. The Slider's orientation
can be horizontal or vertical and it can also act as a "discrete"
slider, allowing only a specified number of values within its range.
Description:
If the
developer doesn't specify any parameters, the Slider is rendered with the
default layout shown in the demonstration and its range of values goes from 0
to 100. The Slider's layout can be customized by providing CSS classes for the
Slider's rail and handle. If handle animation is enabled, the handle slides to the
specified point on the rail with a nice animation effect.
TextBoxWatermark
is an ASP.NET AJAX extender that can be attached to an ASP.NET TextBox control
to get "watermark" behavior. When a watermarked TextBox is empty, it
displays a message to the user with a custom CSS style.
PasswordStrength
is an ASP.NET AJAX extender that can be attached to an ASP.NET TextBox control
used for the entry of passwords. The PasswordStrength extender shows the
strength of the password in the TextBox and updates itself as the user types
the password. The indicator can display the strength of the password as a text
message or with a progress bar indicator.
Description:
The styling
and position of both types of indicators is configurable. The required strength
of the password is also configurable, allowing the page author to tailor the
password strength requirements to their needs.
The Accordion
is a web control that allows you to provide multiple panes and display them one
at a time. It is like having several CollapsiblePanels where only one can be
expanded at a time. The Accordion is implemented as a web control that contains
AccordionPane web controls. Each AccordionPane control has a template for its
Header and its Content. We keep track of the selected pane so it stays visible
across postbacks.
Description:
It also
supports three AutoSize modes so it can fit in a variety of layouts.
None
- The Accordion grows/shrinks without restriction. This can cause other elements
on your page to move up and down with it.
Limit
- The Accordion never grows larger than the value specified by its Height
property. This will cause the content to scroll if it is too large to be
displayed.
Fill
- The Accordion always stays the exact same size as its Height property. This
will cause the content to be expanded or shrunk if it isn't the right size.
Introduction: Here I will explain how to use Ajax cascading dropdownlist with
database using asp.net
Description: now I will explain
how to use Ajax cascading dropdownlist in asp.net.
Here I already explained how to
populate dropdown based on another dropdown but now why I am explaining about
this Ajax cascading dropdownlist because if we use this Ajax cascading
dropdownlist we can get the dropdown data without any postback operation and we
don’t need to write extra code to disable dropdowns based on otherdropdown
selection all the futures available with this Ajax cascading dropdown directly
but here we need to write webservices to populate the dropdowns with
data.
In this article I will explain how to use Ajax Calendar extender
control in asp.net and how to change date format in ajax calendar control and
display calendar control when click on image button in asp.net.