Skip to content
DayPilot

DayPilot Lite for ASP.NET MVC 1.3 SP1

 Release date: June 19, 2013 (build 1.3.395)

Redirect() Method

The new Redirect() method allows you to redirect the page to another location during a CallBack request.

protected override void OnEventClick(EventClickArgs e)
{
  Redirect("~/Dialog/Edit?id=" + e.Id);
}

Improvements