As I had problems with the way events worked, I wanted to know more about the way they worked. below is bit of information about events that is good to know: There are two different kinds of events: Synchronous and Asynchronous events. Synchronous events End with -ing (ItemAdding, ItemUpdating) Block...
Some time ago I tried to alter a field of a SPListItem right after the moment that the item has been created. A var was stored in the Session so it could be used on the newly created SPListItem (itemAdded). NOT. I figured out that the HttpContext isn't available when during the ItemAdded event. When...