How to create ajax balloonpopupextender in asp.net?
Snippet Code
Rate this page :
[ 0 votes]
Balloonpopupextender is a control which is used to display a popup message like ballon type. The simple steps to create a balloonpopupextender is given below.
Step1:
Register the AJAX Control Toolkit Library.
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
Step2:
Drag an ASP.Net AJAX ToolScriptManager on the page.
<cc1:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</cc1:ToolkitScriptManager>
Step3:
Then add the BalloonPopupExtender next to the TextBox control for which you want to display the Balloon Popup.
<asp:TextBox ID="TextBox1" runat="server" />
<cc1:BalloonPopupExtender ID="BalloonPopupExtender1" TargetControlID="TextBox1" UseShadow="true" DisplayOnFocus="true"
Position="BottomRight" BalloonPopupControlID="Panel1" BalloonStyle="Cloud" runat="server" />
<asp:Panel ID="Panel1" runat="server">
This is a Cloud Balloon Popup
</asp:Panel>