Hello,
My reminders are set using
On the aspx page. And I am having a problem with them resetting even after I have clicked on dismiss. They seem to keep popping up every time the page reloads.
On dismiss I set the reminder field on the database to "-1" and then when
is called I set my reminders for each of my appointments like so.
Would the Scheduler still find and display the reminder if I do not do this? If so what should I put in my database for it not to be displayed after it has been dismissed instead of "-1"?
Thank you
Phil
My reminders are set using
DataReminderField="Reminder"
On dismiss I set the reminder field on the database to "-1" and then when
protected
void
SchedAppointments_AppointmentDataBound(
object
sender, SchedulerEventArgs e)
if
((Reminder != -1))
{
e.Appointment.Reminders.Add(
new
Reminder(Reminder));
}
Would the Scheduler still find and display the reminder if I do not do this? If so what should I put in my database for it not to be displayed after it has been dismissed instead of "-1"?
Thank you
Phil