Ajax Calender Extender Not Working In Asp.net Web Application
I want to use calender extender from Ajax toolkit but it not showing in targeted textbox. I'm using this code:
Solution 1:
Try replacing ScriptManager with ToolkitScriptManager
<asp:ToolkitScriptManager runat="server"></asp:ToolkitScriptManager>
and make sure your ToolkitScriptManager is right after your
<form id="form1" runat="server">
Solution 2:
Since you tagged this question as jQuery, might I suggest an alternative? jQuery UI has an excellent datepicker, if you're willing to add jQuery UI to your project.
$(function () {
$("#<%=txtDate1.ClientID %>").datepicker({ dateFormat: "mm/dd/yy", changeMonth: true, changeYear: true });
});
Post a Comment for "Ajax Calender Extender Not Working In Asp.net Web Application"