0

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?

4

2 に答える 2

1

DropDownList1.SelectedItem.Textハードコードされた会議ホール名の代わりに使用します。

編集:DropDownList.AutoPostBack=Trueドロップダウンからアイテムを選択すると、ページがポストバックされ、カレンダーがレンダリングされるよう に設定する必要もあります。

于 2013-06-24T06:55:45.517 に答える