Using TextBoxWatermark in a FormView : ASP.NET Ajax Control Toolkit Tutorials
The TextBoxWatermark control in the AJAX Control Toolkit extends a text box so that a text is displayed within the box. When a user clicks into the box, it is emptied. If the user leaves the box without entering text, the prefilled text reappears. This is also possible within a FormView control. View...
Using the Slider Control With Auto-Postback : ASP.NET Ajax Control Toolkit Tutorials
The Slider control in the AJAX Control Toolkit provides a graphical slider that can be controlled using the mouse. It is possible to make the slider autopostback once its value changes. View Visual Basic tutorial View Visual C# tutorial...
Understanding ASP.NET AJAX Web Services : ASP.NET Ajax Tutorials
Web Services are an integral part of the .NET framework that provide a cross-platform solution for exchanging data between distributed systems. Although Web Services are normally used to allow different operating systems, object models and programming languages to send and receive data, they can also...
Using TextBoxWatermark With Validation Controls : ASP.NET Ajax Control Toolkit Tutorials
The TextBoxWatermark control in the AJAX Control Toolkit extends a text box so that a text is displayed within the box. When a user clicks into the box, it is emptied. If the user leaves the box without entering text, the prefilled text reappears. This may collide with ASP.NET Validation Controls on...
Understanding ASP.NET AJAX Authentication and Profile Application Services : ASP.NET Ajax Tutorials
The Authentication service allows users to provide credentials in order to receive an authentication cookie, and is the gateway service to allow custom user profiles provided by ASP.NET. Use of the ASP.NET AJAX authentication service is compatible with standard ASP.NET Forms authentication, so applications...
Understanding ASP.NET AJAX Localization : ASP.NET Ajax Tutorials
Localization is the process of designing and integrating support for a specific language and culture into an application or an application component. The Microsoft ASP.NET platform provides extensive support for localization for standard ASP.NET applications by integrating the standard .NET localization...
Understanding ASP.NET AJAX UpdatePanel Triggers : ASP.NET Ajax Tutorials
When working in the markup editor in Visual Studio, you may notice (from IntelliSense) that there are two child elements of an UpdatePanel control. One of which is the Triggers element, which specifies the controls on the page (or the user control, if you are using one) that will trigger a partial render...
Creating a Numeric Up Down Control with a Web Service Backend : ASP.NET Ajax Control Toolkit Tutorials
Instead of letting a user type a value into a check box, a numeric up/down control (that exists on Windows and other operating systems) could prove as more comfortable. By default, the NumericUpDown control always increases or decreases a value by 1, but a web service proves more flexibility. View Visual...
Manipulating DropShadow Properties from Client Code : ASP.NET Ajax Tutorials
The DropShadow control in the AJAX Control Toolkit extends a panel with a drop shadow. Properties of this extender can also be changed using client JavaScript code. Steps The code starts with a panel containing some lines of text...
Dynamically Populating a Control Using JavaScript Code : ASP.NET Ajax Tutorials
The DynamicPopulate control in the ASP.NET AJAX Control Toolkit calls a web service (or page method) and fills the resulting value into a target control on the page, without a page refresh. It is also possible to trigger the population using custom client-side JavaScript code. First of all, you need...
