I am using the OnDayRender
event to change the BackColor of certain days in my Calendar. There is a DropDownList in my aspx page. It has Names of Conference Halls. When user select a Conference Hall Name from that list, I need to call OnDayRender
and change the BackColor of certain days in my Calendar.
I wrote code to change BackColor
of days in my Calendar. I tested it by hard coding a Conference Hall Name
. but I need to set Conference Hall Name
with OnSelectedIndexChanged
event of DropDownList
and change BackColor
of days in my Calendar.
How can I do this?