Archive for the ‘C#’ Category
Here’s a short one worth taking note of. If you’re using SharePoint Event Receivers – more specifically synchronous event receivers (-ing) you might notice that if you try to set Properties.AfterProperties["Title"] in a document library for the strangest reason it doesn’t work. If that occurs, use the
AfterProperties["vti_title"]
And the Document Title can be managed.
After looksing half a day for a st00pid mistake I have to write about this to warn anyone that might run into similar problem.
In VS I’ve prepared a custom event receiver which needed to be run as system account (for performing actions that the user running the event receiver doesn’t have – like setting permissions, [...]


