---
title: "AJAX Calendar Extender Control"  
description: "AJAX Calendar Extender Control"  
author: "John Smith"  
published: 2010-09-29  
updated: 2023-05-10  
canonical: https://www.mindstick.com/forum/3/ajax-calendar-extender-control  
category: "ajax"  
tags: ["ajax"]  
reading_time: 1 minute  

---

# AJAX Calendar Extender Control

I [am trying](https://answers.mindstick.com/qa/36834/which-two-programming-languages-should-i-master-in-if-i-am-trying-to-get-into-google-or-facebook) to use [AJAX](https://www.mindstick.com/articles/1541/check-availability-of-user-name-or-email-using-asp-dot-net-ajax-and-jquery) [calendar extender](https://www.mindstick.com/forum/2154/ajax-calendar-extender-binding-null-to-text-as-selected-date) [control](https://www.mindstick.com/blog/197/asp-dot-net-repeater-control) in my [ASP.NET](https://www.mindstick.com/articles/934/default-folders-available-inside-the-asp-dot-net-application-folder) application.\
Please provide me any [sample](https://www.mindstick.com/news/2174/mars-mission-by-nasa-prepares-for-tests) of code.\
\
thx\

## Replies

### Reply by John Smith

Thanks Amit..\

### Reply by Amit Singh

we use AJAX [calendar](https://www.mindstick.com/articles/13088/how-to-choose-the-best-calendar-for-you-dynamics-crm-system) extender control by this example\
Step1: we write this code on aspx page\

```
<body>    <form id="form1" runat="server">    <div><%--Using ScriptManager orToolkitScriptManager according toolkit version--%>    <asp:ScriptManager ID="ScriptManager1"runat="server"></asp:ScriptManager>    <%--using textbox--%>    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>    <%-- using calenderextendar here--%>    <cc1:CalendarExtender ID="CalendarExtender1" runat="server"TargetControlID ="TextBox1"Format="MMM/dd/yyyy">    </cc1:CalendarExtender>    </div>    </form></body> 
```

Step2: Runthe project

and see the result


---

Original Source: https://www.mindstick.com/forum/3/ajax-calendar-extender-control

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
