Hi I am trying to access the created by coloumn in item added event reciever.But when i debug it shows null value...below is the code
public override void ItemAdded(SPItemEventProperties properties)
{
var CreatedBy = (string)properties.AfterProperties["Author"];
// ....
}