ASP.NET - AJAX Control

AJAX stands for Asynchronous JavaScript and XML. This is a cross platform technology which speeds up response time. The AJAX server controls add script to the page which is executed and processed by the browser.
However like other ASP.Net server controls, these AJAX server controls also can have methods and event handlers associated with them, which are processed on the server side.
The control toolbox in the Visual Studio IDE contains a group of controls called the 'AJAX Extensions'
AJAX Extensions

The ScriptManager Control


The ScriptManager control is the most important control and must be present on the page for other controls to work.
It has the basic syntax:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
If you create an 'Ajax Enabled site' or add an 'AJAX Web Form' from the 'Add Item' dialog box, the web form automatically contains the script manager control. The ScriptManager control takes care of the client-side script for all the server side controls.

The UpdatePanel Control:


The UpdatePanel control is a container control and derives from the Control class. It acts as a container for the child controls within it and does not have its own interface. When a control inside it triggers a post back, the UpdatePanel intervenes to initiate the post asynchronously and update just that portion of the page.
For example, if a button control is inside the update panel and it is clicked, only the controls within the update panel will be affected, the controls on the other parts of the page will not be affected. This is called the partial post back or the asynchronous post back.

Example:

Add an AJAX web form in your application. It will contain the script manager control by default. Insert an update panel. Place a button control along with a label control within the update panel control. Place another set of button and label outside the panel.
The design view looks as follows:
ScriptManager
The source file is as follows:
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server" />
</div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Button ID="btnpartial" runat="server" 
            onclick="btnpartial_Click" Text="Partial PostBack"/>
<br />
<br />
<asp:Label ID="lblpartial" runat="server"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
<p>
 </p>
<p>
Outside the Update Panel</p>
<p>
<asp:Button ID="btntotal" runat="server" 
    onclick="btntotal_Click" Text="Total PostBack" />
</p>
<asp:Label ID="lbltotal" runat="server"></asp:Label>
</form>
Both the button controls have same code for the event handler:
string time = DateTime.Now.ToLongTimeString();
lblpartial.Text = "Showing time from panel" + time;
lbltotal.Text = "Showing time from outside" + time;
Observe that when the page is run, if the total post back button is clicked, it updates time in both the labels but if the partial post back button is clicked, it only updates the label within the update panel.
update panel
A page can contain more than one update panel with each panel containing other controls like a grid and displaying different part of data.
When a total post back occurs, the content of the update panel is updated by default. This default mode could be changed by changing the UpdateMode property of the control. Let us look at other properties of the update panel.

Properties of the UpdatePanel Control:


The following table shows the properties of the update panel control:
PropertiesDescription
ChildrenAsTriggersThis property indicates whether the post backs are coming from the child controls which will cause the update panel to refresh.
ContentTemplateIt is the content template and defines what appears in the update panel when it is rendered.
ContentTemplateContainerRetrieves the dynamically created template container object and used for adding child controls programmatically.
IsInPartialRenderingIndicates whether the panel is being updated as part of the partial post back.
RenderModeShows the render modes. The available modes are Block and Inline.
UpdateModeGets or sets the rendering mode by determining some conditions.
TriggersDefines the collection trigger objects each corresponding to an event causing the panel to refresh automatically.

Methods of the UpdatePanel Control:


The following table shows the methods of the update panel control:
MethodsDescription
CreateContentTemplateContainerCreates a Control object that acts as a container for child controls that define the UpdatePanel control's content.
CreateControlCollectionReturns the collection of all controls that are contained in the UpdatePanel control.
InitializeInitializes the UpdatePanel control trigger collection if partial-page rendering is enabled.
UpdateCauses an update of the content of an UpdatePanel control.
The behaviour of the update panel depends upon the values of the UpdateMode property and ChildrenAsTriggers property:
UpdateModeChildrenAsTriggersEffect
AlwaysFalseIllegal parameters.
AlwaysTrueUpdatePanel refreshes if whole page refreshes or a child control on it posts back.
ConditionalFalseUpdatePanel refreshes if whole page refreshes or a triggering control outside it initiates a refresh.
ConditionalTrueUpdatePanel refreshes if whole page refreshes or a child control on it posts back or a triggering control outside it initiates a refresh.

The UpdateProgress Control:


The UpdateProgress control provides a sort of feedback on the browser while one or more update panel controls are being updated. For example while a user logs in or waits for server response while performing some database oriented job.
It provides a visual acknowledgement like "Loading page...", indicating the work is in progress.
The syntax for the UpdateProgress control is:
<asp:UpdateProgress ID="UpdateProgress1" 
              runat="server" 
              DynamicLayout="true" 
              AssociatedUpdatePanelID="UpdatePanel1" >
<ProgressTemplate>
   Loading...
</ProgressTemplate>
</asp:UpdateProgress>
The above snippet shows a simple message within the ProgressTemplate tag, however it could be an image or other relevant controls. The UpdateProgress control will display for every asynchronous postback unless it is assigned to a single update panel using the AssociatedUpdatePanelID property.

Properties of the UpdateProgress Control


The following table shows the properties of the update progress control:
PropertiesDescription
AssociatedUpdatePanelIDGets and sets the ID of the update panel with which this control is associated.
AttributesGets or sets the cascading style sheet (CSS) attributes of the UpdateProgress control.
DisplayAfterGets and sets the time in milliseconds after which the progress template is displayed. The default is 500.
DynamicLayoutIndicates whether the progress template is dynamically rendered.
ProgressTemplateIndicates the template displayed during an asynchronous post back which takes more time than the DisplayAfter time.

Methods of the UpdateProgress Control


The following table shows the methods of the update progress control:
MethodsDescription
GetScriptDescriptorsReturns a list of components, behaviors, and client controls that are required for the UpdateProgress control's client functionality.
GetScriptReferencesReturns a list of client script library dependencies for the UpdateProgress control.

The Timer Control:


The timer control is used to initiate the post back automatically. This could be done in two ways:
(1) Setting the Triggers property of the UpdatePanel control:
<Triggers>
<asp:AsyncPostBackTrigger 
                ControlID="btnpanel2" 
                EventName="Click" />
</Triggers>
(2) Placing a timer control directly inside the UpdatePanel to act as a child control trigger. A single timer can be the trigger for multiple UpdatePanels.
<asp:UpdatePanel ID="UpdatePanel1" 
                 runat="server" 
                 UpdateMode="Always">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="1000">
</asp:Timer>
<asp:Label ID="Label1" runat="server" 
           Height="101px" Width="304px">
</asp:Label>
</ContentTemplate>
</asp:UpdatePanel>

0 comments:

Post a Comment

Contact Form

Name

Email *

Message *