Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

Getting EPiServer XForms stats without a webcontrol

Vote:
 

Hi,

 Is it possible to get access to the stats from the XForms without using the xformstatistics webcontrol doing the rendering?

 Thanks

#28889
Mar 25, 2009 20:11
Vote:
 

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);
                }

 

 

#28890
Mar 25, 2009 21:20
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.