I have some query regarding Ajax ASP.NET regarding Calendar tool. For instance, if a user chooses a certain date of his/her birthdate from the AJAX Calendar it will calculate the age of that user and display it directly to the Age textbox.
For example, a user selects a date on the calendar (calendar wizard) : June 26 1977, the users age now is 34 w/c will appear on the Age textbox.
Hi, thanks a lot for the video! I was just wondering, what if instead of clicking inside the text box, a small image is used to click on but a text box retrieves the date. How can that be done?.
Thanks for your time and efforts in sharing your knowledge and experience.Very helpful.Is there any chance to do the video tutorial about updating gridView with the help of embedded DropDown list in a template field.
Very Good!!!! Excelent!!!!!
jeffkernell 5 days ago
hi,
I have some query regarding Ajax ASP.NET regarding Calendar tool. For instance, if a user chooses a certain date of his/her birthdate from the AJAX Calendar it will calculate the age of that user and display it directly to the Age textbox.
For example, a user selects a date on the calendar (calendar wizard) : June 26 1977, the users age now is 34 w/c will appear on the Age textbox.
Please help.
Thanks.
hsgb77 7 months ago
Hi, thanks a lot for the video! I was just wondering, what if instead of clicking inside the text box, a small image is used to click on but a text box retrieves the date. How can that be done?.
Thanks :)
personicas 9 months ago
Thanks for your time and efforts in sharing your knowledge and experience.Very helpful.Is there any chance to do the video tutorial about updating gridView with the help of embedded DropDown list in a template field.
grg54 1 year ago
how do you do that in C#?
eitremn 1 year ago
Comment removed
grg54 10 months ago
Respond to this video...
Just Change
TextBox1_PopupControlExtender.Commit(Calendar1.SelectedDate);
to
TextBox1_PopupControlExtender.Commit(Calendar1.SelectedDate.ToShortDateString());
grg54 10 months ago