Hello Sir,
I got some issues and found error in this code with bold line:
protected void RadToolTipManager1_AjaxUpdate(object sender, ToolTipUpdateEventArgs e)
{
Appointment apt = RadScheduler1.Appointments.FindByID(e.Value);
Control ctrl = Page.LoadControl("Controls/LessonToolTipForScheduler.ascx");
e.UpdatePanel.ContentTemplateContainer.Controls.Add(ctrl);
Type ucType = ctrl.GetType();
System.Reflection.PropertyInfo propertyInfo = ucType.GetProperty("Parameters");
propertyInfo.SetValue(ctrl, e.Value, null);
}
Also got error msg as:
An exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll but was not handled in user code
Additional information: Exception has been thrown by the target of an invocation.
Can you please help me to clear this error.
Thanks and Regards
Sija