How force DayRender event of Calendar to run?

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

How can I force the DayRender event of my Calendar to run/refresh?

The calendar displays data from a database and I am allowing the user to
filter out what data they see on the calendar. When they click "Update
Calendar" I want to force the DayRender events to reprocess. I don't want
to simply do a response.redirect to the page.

Thanks.
 
Never mind. I just put another control on the page that forced a postback
and it redrew the calendar.

Is there a better way? ;)
 
You mean is there a way to execute DayRender without a return trip to
the server? No, there is not. You might be able to come up with (or
find) a client side calendar control with javascript to do this.
 
Back
Top