Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
You can access all the result by using some thing from this
IList<XFormData> data = Xform.GetPostedData(ActivePage.PageGuid, DateTime.MinValue, DateTime.MaxValue);
List<XFormData> only = new List<XFormData>();
string tmp="";
foreach (XFormData d in data)
{
tmp = d.GetValue("OnlyLang");
if (CurrentPage.LanguageID.Equals(tmp))
only.Add(d);
}
Hi,
Is it possible to get access to the stats from the XForms without using the xformstatistics webcontrol doing the rendering?
Thanks