AJAXTutorials.com - ASP.NET AJAX Tutorials


Server Intellect


Latest AJAX Posts

Learn How to Use MutuallyExclusive Checkboxes in ASP.NET AJAX C#

This tutorial will demonstrate how to use the MutuallyExclusive Checkbox Extender in ASP.NET AJAX C# In this tutorial we will demonstrate how to enable the developer to configure checkboxes that are mutually exclusive; which ensures that the end-user will only be able to select a single option. This...




Learn How to Use the ASP.NET AJAX Slider Control C#

This tutorial will demonstrate how to use the Slider Control in an ASP.NET 3.5 AJAX C# In this tutorial we will show you how to simplify numeric user input by using an AJAX control called the Slider control. Here is a snapshot of the Web site: To start, open Visual Studio 2008. File > New > Web...




Learn How to add UpdatePanels within a TabContainer AJAX C#

This tutorial will show you how to add UpdatePanels within a TabContainer using ASP.NET 3.5 AJAX C#. In this tutorial we will demonstrate how to add two UpdatePanels with two DropDownLists in each UpdatePanel and display two seperate results within a TabContainer using ASP.NET 3.5 AJAX. Here is a snapshot...




Learn How to Build Tabbed Content in an ASP.NET 3.5 AJAX Web App C#

This tutorial will demonstrate how to build tabbed content in an ASP.NET 3.5 AJAX Web App C# In this tutorial we will be using AJAX to build a tabbed content browser. So when a user clicks a tab the AJAX will send and receive the appropriate data for the corresponding tab. To begin, we will start with...




Learn How to DataBind to an Accordion using the ASP.NET 3.5 AJAX Control Toolkit

This tutorial will demonstrate how to DataBind to an Accordion using the ASP.NET 3.5 AJAX control toolkit. In this tutorial we explore the accordion control in the AJAX Control Toolkit. The AJAX Toolkit provides multiple pane sand allows the user to display one of them at a time. Usually, panels are...




This tutorial will explore Partial Page Updates with ASP.NET AJAX. C#

This tutorial will explore Partial Page Updates with ASP.NET AJAX. C# In this tutorial we will explore ASP.NET AJAX Extensions ability to do a partial or incremental page update without doing full postbacks to the server, without any code changes and with minimal markup changes. The ability to integrate...




This tutorial will explore ASP.NET AJAX Web Services in Visual C#. Part 3

In part 3 of 3, of this tutorial we will learn how to handle complex types, create and use paging methods, and use the AutoCompleteExtender and the ASP.NET AJAX Toolkit. Learn How to Handle Complex Types These complex types that are accepted or returned by a Web service are automatically exposed through...




This tutorial will explore ASP.NET AJAX Web Services in Visual C#. Part 2

In part 2 of 3 of this tutorial we will learn how to work with complex types, create and use JavaScript proxies, handle errors and XML data returned from ASP.NET AJAX Web Services. Learn How to Work with Complex Types As shown previously the Student class returns a complex type named Student from a Web...




This tutorial will explore ASP.NET AJAX Web Services in Visual C#. Part 1

In part 1 of 3, of this tutorial we will learn how an ASP.NET AJAX Web Service handler is configured, how a Web Service request message is serialized to JSON, how to create AJAX-enabled Web Services and how to use the ScriptService and ScriptMethod attribute. In this tutorial we will explore how Web...




Expose WCF Service to JavaScript in ASP.NET 3.5 VB

This tutorial will show you how to create and implement an AJAX-enabled WCF Service into an ASP.NET Web page. WCF (or Windows Communication Foundation) is a union of technologies developed by Microsoft to make it easier and quicker for developers to build distributed applications. We are going to create...