Click here to Skip to main content
15,885,890 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
XML
<ajax:CalendarExtender ID="Calendarextender1" runat="server" Format="dd/MM/yyyy" PopupPosition="BottomRight"
                          TargetControlID="txtBxDay" Enabled="true" PopupButtonID="imgSearch">
                      </ajax:CalendarExtender>



I am using ajax calendar extendar. In this, I m using few properties which is mentioned above in the code.
I cant able to update my form without selecting date in ajax calendar. Only if i change date in calendar, remaining field such as textboxes,checkbox are updating. May I no, if I miss any property which I should not select dates again for updating.
Posted
Comments
Sergey Alexandrovich Kryukov 18-Oct-13 10:15am    
I don't quite understand. You are handling it at server and put in in a Web form at the same time. If you want to send HTML request only by form submission, remove runat="server"...
—SA

1 solution

Nothing wrong with your property.Before updating check it using IF condition

if(txtBxDay.text !="")
{
//your update query with date

}
else
{
//your update query without date
}
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900