daypilot.aspx.cs
protected void DayPilotCalendar1_EventClick(object sender, DayPilot.Web.Ui.Events.EventClickEventArgs e)
{
Label1.Text = "Selected event: " + e.Value;
}
daypilot.aspx
<DayPilot:DayPilotCalendar ID="DayPilotCalendar1" runat="server" Width="16px"
BusinessEndsHour="19" EventClickHandling="PostBack" OnEventClick="DayPilotCalendar1_EventClick" />
Please suggest some ideas.