Posted on: 5/30/2014 11:23:58 AM | Views : 325

Hi
I have an event for one of my classes, so when it is called, it will call the update event from the aspx page and populate with the correct information before saving.
This seems to work great, and we have similar calls throughout our system which is not causing a problem.
Although recently,, every so often, when the class function is called with an id, the information passed back to the event is not the same, it is using information from a different id.  When looking at IIS logs, it seems to two people (or maybe one on two tabs), have been updating two records, and the callbacks are being mixed up.  I have added a trap at the top of the event to test if it is the same call, and has failed a couple of times within a week.
I hope this makes sense.
Steve
Below is the update command in my classes (The GetUpdate being the callback)
public delegate void OnUpdate(sched_bookings c, bool NewRecord); public static e ...

Go to the complete details ...