Atlas How To – Using the Update Panel

The UpdatePanel is one of the controls of Atlas that enables the adding of selective Atlas functionality to existing Web applications. For this example, we will start by building an ASP 2.0 application. With that application we then add the most common Ajax functionality to the page – the partial page update.

Note: If you haven’t installed the latest Atlas build it can be found here

The Standard Web Application

  1. Start by creating a new ASP.NET Web Application

  1. Place a button and text box on the form

  1. Double click the button and add the following code

  1. Run the application. As you click the button notice that the page is doing a post back each time. Of course this is standard ASP.NET behavior

Adding Atlas Functionality

Now that we have built a standard ASP.NET application we can add partial the partial page update feature of Atlas functionality to the application.

  1. Drag the UpdatePanel control onto the form. Once added to the form this will also bring in the Microsoft.Web.Atlas.dll into your project.

  1. Add a Script Manager control to the page

  1. Enable Partial Rendering.

  1. Drag the label into the UpdatePanel Control

  1. Select the UpdatePanel properties and select Triggers

  1. Select a trigger that occurs when the click event is raised by the button.

  1. Once you run the application you will notice that the post back is gone.