The .net Calendar control is a server control. If doesn't provide any native functionality for client side events. Add this to your DayRender handler:
e.Cell.Attributes.Add("onClick", String.Format("alert('{0}');", e.Day.Date))
e.Cell.Style.Add("cursor", "hand")
Modify the onclick client string to open your window.
Peter
------------------------------------------------------
Work smarter, not harder.
|