I am having trouble identifying visitors who contact us through our website's contact form. The form collects basic information, but it would be nice to include some Sitecore Analytics data in the body of the email to help paint a bigger picture.

To achieve this, I would need to somehow retrieve all Campaigns and Goals triggered during the current session.

The Sitecore API provides convenient methods for "triggering" goals and campaigns, but I cannot seem to find any methods to retrieve what's been triggered for the current session. I would like to avoid querying the OMS database directly, if possible.

Any help is much appreciated.

link|improve this question

feedback

1 Answer

You can have a dig around in the VisitorDataSet object returned from Tracker.CurrentVisit, you should be able to get at some useful properties and then extract relevant data.

This, for example, should get you the campaign returned by the current visit (if there is a relevant campaign)..

if(!Tracker.CurrentVisit.IsCampaignIdNull())
{
    var campaignDataTable = new SharedDataSet.CampaignsDataTable();
    var data = campaignDataTable.FindByCampaignId(Tracker.CurrentVisit.CampaignId); 

    Response.Write("Campaign Name:" + data.CampaignName);
    Response.Write("Id:" + Tracker.CurrentVisit.CampaignId);    
}
else
{
    Response.Write("No campaign found!");
} 

I've not used this a lot but might get you going in the right direction, sorry I cant provide any more detail.

link|improve this answer
Thanks, I tried to look into this. I think these classes may have been removed somewhere along the way. I can't seem to find them in SC 6.4. What version are you running? – Derek Hunziker Nov 23 '11 at 20:43
Ah, this is 6.5 (the API has been improved a lot over 6.4). I will try and see if I can find a 6.4 example for you. – Stephen Pope Nov 24 '11 at 9:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.