Get Sitecore item 'last published' value AKA 'updated'
public Item item;
public String PublishDate()
{
DateTime postDate = Context.Item.Statistics.Updated;
return postDate != null ? postDate.ToString("MMMM dd yyyy H:mm:ss tt") : String.Empty;
}