EventClickHandling="PostBack" how to get value in c#

Asked by Anonymous
13 years ago.

Hello I am using C#, How to get value of EventClickHandling="PostBack" when click the row.

Answer posted by T1GR3JU4N
12 years ago.

protected void DayPilotCalendar1_EventClick(object sender, DayPilot.Web.Ui.Events.EventClickEventArgs e)
{
txtValue.Text = e.Value;
}

This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.