sender.idFromMouse(eventArgs.get_browserEvent()) で返される値を使用してマウス ポインターが置かれている要素の id を確認できます。
イベントがトリガーされた動作はキャンセルできます。
WebMonthCalendar1.ClientEvents.MouseDown = "WebMonthCalendar1_MouseDown"
WebMonthCalendar1.ClientEvents.MouseDown = "WebMonthCalendar1_MouseDown";
// The client event 'MouseDown' takes two parameters sender and e // sender is the object which is raising the event // e is the CancelEventArgs function WebMonthCalendar1_MouseDown(sender, e) { if (!confirm("Are you sure you want to click the mouse?")) //Cancels the MouseDown event e.set_cancel(true); }