I am using ajax calendar extender to along with TextBox to input date in "dd-MM-yyyy" format. When I am selecting date from calendar it takes input in dd-MM-yyyy format but I am not able to insert the same into my database table. Please guide me where I
am doing wrong.
This is my aspx page-
<td>Sent Date1:</td>
<td>
<asp:TextBox ID="txtSentDate1" runat="server" ReadOnly="true"></asp:TextBox>
<asp:ImageButton ID="imgPopup" ImageUrl="images/calendar.png" ImageAlign="Bottom"
runat="server" />
<cc1:CalendarExtender ID="Calendar1" PopupButtonID="imgPopup" runat="server" TargetControlID="txtSentDate1"
Format="dd/MM/yyyy">
</cc1:CalendarExtender>
</td>
</tr>
<tr>
<td>Sent Comment1:</td>
<td>
<asp:TextBox ID=& ...
Go to the complete details ...