I have the following event receiver where I need to return the value of the "fullURL" to the itemUpdated event.
The fullURL is the url to the page that is firing the event receiver.
Is this possible or is there a better way of doing it?
public override void ItemUpdating(SPItemEventProperties properties) { base.ItemUpdating(properties); if (properties.ListTitle == "Pages") { using (SPWeb subweb = properties.Web) { SPListItem listItem = properties.ListItem;
//return this value to the itemupdatedevent var fullURL = properties.Web.Url + "/" + properties.ListItem.Url; } } }
sayitfast