Using ASP.NET AJAX Popup Control Extender

You are currently viewing Using ASP.NET AJAX Popup Control Extender

ASP.NET AJAX Popup Control can be attached to any ASP.NET control to display additional contents in a popup window. The popup window can display either static contents just like tool tips or can be made more interactive with the help of AJAX UpdatePanel control. It can also have other ASP.NET controls inside which may or may not cause full or AJAX based asynchronous post backs using AJAX UpdatePanel. In this tutorial I will show you how you can use AJAX Popup Control Extender with server side ASP.NET controls.

To start this tutorial you need to create a blank ASP.NET page that have an instance of AJAX ScriptManager control on top. This control is required to use any AJAX related feature in ASP.NET page and to enable partial page rendering.

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>

Then you add a markup of simple message label and a TextBox as shown in the above figure:

Favorite Sport: 

<asp:TextBox ID="TextBox1" runat="server" Width="100" />

Then you need to create a popup window which you want to display with the help of AJAX Popup Control Extender. I am using ASP.NET Panel control in this tutorial to popup a RadioButtonList of different sports. You are free to popup any control you want in your application such as ASP.NET Calendar or Login controls.

<asp:Panel ID="Panel1" runat="server"> 
   <asp:UpdatePanel ID="UpdatePanel1" runat="server"> 
      <ContentTemplate> 
         <asp:RadioButtonList ID="RadioButtonList1" runat="server" 
            AutoPostBack="True" BorderColor="#336699" BorderStyle="Solid" 
            Width="100" BorderWidth="1" BackColor="#dadada" 
            OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged"> 
         
           <asp:ListItem>Football</asp:ListItem> 
           <asp:ListItem>Snooker</asp:ListItem> 
           <asp:ListItem>Tennis</asp:ListItem> 
           <asp:ListItem>Cricket</asp:ListItem> 

         </asp:RadioButtonList> 
      </ContentTemplate> 
   </asp:UpdatePanel> 
</asp:Panel>

In the above markup, I first declared an ASP.NET Panel control. Inside Panel I am using AJAX UpdatePanel control so that any post back occur inside Panel not cause the whole page to be flicker or refresh. UpdatePanel control contains a RadioButtonList control with some ListItems to display different sports names. Notice that the RadioButtonList control’s AutoPostBack property is set to true and an event handler is attached with the OnSelectedIndexChanged event of RadioButtonList. This is the requirement here in this tutorial because I want to update my TextBox with the selected sports name as soon as user selects any sports item from the RadioButtonList control.

READ ALSO:  Accessing ASP.NET CheckBoxList Control at Client Side using JQuery

Next, you need to add AJAX Popup Control Extender on the page with some basic properties set as shown in the following markup

<ajax:PopupControlExtender ID="PopupControlExtender1" runat="server" 
   TargetControlID="TextBox1" 
   PopupControlID="Panel1" 
   Position="Right" 
   CommitProperty="value" 
   OffsetX="3"> 
</ajax:PopupControlExtender>

The explanation of the above properties and some additional properties of AJAX Popup Control Extender is given below:

TargetControlID: The ID of the control you want to attach the popup control with. In the above example I am attaching popup control with TextBox control.

PopupControl: The ID of the control to display as popup window. In the above example I am using Panel control.

Position: This is optional property and can be set to Left, Right, Top, Bottom or Center. It specifies the relative position of the popup control with respect to target control.

CommitProperty: This property is also optional and specifies which property will return the result of the popup window. In the above example I put “value” as the value of this property. This is because every time use will select any item from the RadioButtonList control the value of the selected option will be returned from the popup.

CommitScript: This is another optional property and specifies the additional script to run after setting the result of the popup window.

OffsetX and OffsetY: These two properties specify the number of pixels to offset the popup window horizontally or vertically from its default position as specified by Position property.

The final bit of code you need to finish this tutorial is the SelectedIndexChanged event of RadioButtonList control that hide the popup control by calling its Commit method as soon as user select any item from the RadioButtonList. It also passes the selected value as the parameter of the Commit method so that the value can be returned to target control for display.

protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e) 
{ 
   PopupControlExtender1.Commit(RadioButtonList1.SelectedValue); 
}

This Post Has 10 Comments

  1. Neelaknata

    It is working very nice. Thanks a lot for helping.

  2. Atish

    Nice

  3. raju

    hi i have the same problem,
    i am using popupextender control for calender control in a text.
    when the user selecting next month onthe top it was postbacking and popupextender was disabling so can any help me to solve this issue

  4. ajay bavskar

    this is very good examples…

  5. Al Cranston

    How do we do this with an ASP.NET treeview ? The code works great with a textbox, but there are literally no good examples or videos on how to use the context menu with a treeview scenario.

  6. Safdar Jahan

    Very nice example,i get a lot.

  7. Ram Awatar Yadav

    I just want to use Popup Control Extender to prompt an message to the users in the code behind aspx.cs. Can I do that without user clicking any onclick button or link in the aspx fil.

  8. Richard Ho

    Dear All,

    I just want to use Popup Control Extender to prompt an message to the users in the code behind aspx.cs. Can I do that without user clicking any onclick button or link in the aspx file ?

    I found most of the samples on the web almost needing the user to click an button in order to popup the Popup Control! Can I just use the command PopupControlExtender1.show() in one of the event written by code behind in an asp.cs to popup the Control? The user can then click the “OK” button to dismiss the Popup after seeing my message.

    Thank million!
    Richard Ho

  9. Neha Jain

    This article really help me lot,because i was searching for the demo so that i can understand the functioning of this control very well. So this code has given me a real demonstration.So Thanks to the person who has written the Code.

  10. Ajay Kumar Pandey

    Its really a good article and i enjoyed it a lot.
    Its working fine ,
    Thaks
    Ajay Kumar Pandey

Leave a Reply