I would like to output the results of a form from another page within my template.
I have the Guid of the form in question, so would like to do something like:
Statistics.FormDefinitionID = thisGuid;
However, FormDefinitionID is read only, so how can I achieve what I want?
Many thanks,
/\dam
You shuld be able to accomplish this by instead setting the PageLink and PropertyName
properties to that of the other page/form, something like:
Statistics.PageLink = pageLinkOfRemotePage;
Statistics.PropertyName = "MainXForm"; //or whatever the form property is named
Regards,
Johan Olofsson
EPiServer AB
Statistics.FormDefinitionID = thisGuid;
However, FormDefinitionID is read only, so how can I achieve what I want? Many thanks, /\dam