バージョン

SelectionChanged プロパティ (CalendarClientEvents)

値が変更された後に呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property SelectionChanged As String
public string SelectionChanged {get; set;}
使用例
WebMonthCalendar1.ClientEvents.SelectionChanged = "WebMonthCalendar1_SelectionChanged"
WebMonthCalendar1.ClientEvents.SelectionChanged = "WebMonthCalendar1_SelectionChanged";
// The client event 'SelectionChanged' takes two parameters sender and e
 // sender  is the object which is raising the event
 // e is the CalendarSelectionChangedEventArgs

 
 function WebMonthCalendar1_SelectionChanged(sender, e) {

     //Gets array of new dates             
     var dates = e.get_dates();

     //Gets array of old dates
     var oldDates = e.get_dates();
}
参照