Ajax Calender In asp.net

Ajax Calender How to use in asp.net

 Introduction :   Using the ajax calender you can select the date easily insted of using the simple asp.net calender.  in the property of calenderExtender Set the TargetcontrolID  as the id of the TexBox1's ID like "txtdate"  and other property is DateFormate  as below Source code.

 <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
               
     </asp:ToolkitScriptManager>
      <asp:TextBox ID="txtdate" runat="server"></asp:TextBox>
                  
      <asp:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtdate"   Format="dd/MM/yyyy">
      </asp:CalendarExtender>

* You can set date Formate as dd/MM/yyy

         
Previous
Next Post »

2 comments

Write comments
Unknown
AUTHOR
7 October 2015 at 21:35 delete

http://computerhindiknowledge.blogspot.in

Reply
avatar