---
title: "Ajax Toolkit ConfirmButtonExtender Control in ASP.Net"  
description: "The ConfirmButtonExtender check the confirmation of  end user action.  ConfirmButton Properties:TargetControlID -The ID of the button or link for  thi"  
author: "Amit Singh"  
published: 2010-12-07  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/261/ajax-toolkit-confirmbuttonextender-control-in-asp-dot-net  
category: "ajax"  
tags: ["ajax"]  
reading_time: 1 minute  

---

# Ajax Toolkit ConfirmButtonExtender Control in ASP.Net

The ConfirmButtonExtender check the confirmation of end user action.\

##### ConfirmButton Properties:

**TargetControlID -** The ID of the button or link for this extender to operate on.

**Confirm Text -** The text to show when you want to confirm the click.

##### Code:

```
 <%-- ScriptManager control manages client script for AJAX enabled ASP.NET pages.This enables partial-page rendering and Web-service calls.You have to used this if you want to use ajax control toolkit--%><asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>  <cc1:ConfirmButtonExtender ID="ConfirmButtonExtender1" runat="server" TargetControlID="Button1" ConfirmText="Do you want to submit the page"></cc1:ConfirmButtonExtender>  <asp:Label ID="Label1" runat="server" Text="Enter your email id"></asp:Label><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:Button ID="Button1" runat="server" Text="Submit" />
```

##### Run the project:

![AjaxControl Toolkit ConfirmButtonExtender Control in ASP.Net](https://www.mindstick.com/mindstickarticle/4e57a4f3-65aa-47a4-89e2-fed3ef6d5f8b/images/b941a20b-b370-4c0b-9c2d-76363c256771.png)

When you click submit button then confirmation popup will open like

![AjaxControl Toolkit ConfirmButtonExtender Control in ASP.Net](https://www.mindstick.com/mindstickarticle/4e57a4f3-65aa-47a4-89e2-fed3ef6d5f8b/images/1b008888-6573-4b02-b799-d50d5d88cef2.png)\

---

Original Source: https://www.mindstick.com/articles/261/ajax-toolkit-confirmbuttonextender-control-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
