vote up 0 vote down star

I am using the standard asp:Calendar control. When a user clicks a date, I am showing a modal popup by handling the SelectionChanged event.

However this means that nothing happens if the user clicks a date, then closes the popup, then clicks the same date again.

I'd rather be handling a DateClick event, and do away with the concept of having a selected date altogether.

Can this be achieved using the asp:Calendar?

flag

1 Answer

vote up 0 vote down check

Found a workaround:

In the SelectionChanged event handler, just call

calendar.SelectedDates.Clear();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.