I put this code inside xmlhttppanel
when requist return from server I receive this message from VS : 'dateinput' not registered with script manager
and the strange I dont have control in this name , but I am working with date , is there any help
the function of callServer() contain the code of calling server
| <telerik:RadListBox runat="server" RegisterWithScriptManager="true" ID="lstDates" |
| AllowDelete="true" Skin="Office2007" SelectionMode="Multiple" Width="300"> |
| <ItemTemplate> |
| <telerik:RadDateTimePicker ID="dtPicker" runat="server" SelectedDate='<%# Container.DataItem %>'> |
| </telerik:RadDateTimePicker> |
| </ItemTemplate> |
| </telerik:RadListBox> |
| <telerik:RadDateTimePicker ID="dtpDate" runat="server" Skin="Office2007" /> |
| <br /> |
| <asp:LinkButton ID="btnAddDate" runat="server" OnClientClick="callServer()" ValidationGroup="adddate"> |
| <img id="Img1" src="~/images/btn_adddate.gif" runat="server" /></asp:LinkButton><br /> |
| <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Select Date first" |
| ControlToValidate="dtpDate" ValidationGroup="adddate"></asp:RequiredFieldValidator> |
when requist return from server I receive this message from VS : 'dateinput' not registered with script manager
and the strange I dont have control in this name , but I am working with date , is there any help
the function of callServer() contain the code of calling server