Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Can the data submitted from a Contour form be displayed on a page in Umbraco?
Absolutley,you can use XSLT or a user control to display contour data. Contour is shipped with some Xslt helper functions such as GetRecordsFromFormOnPage. Create a new xslt and verify that you have a xmlns definition for Contour:xmlns:umbraco.contour="urn:umbraco.contour" And that it's also in the exclude-result-prefixes as umbraco.contourYou can then use <xsl:for-each select="umbraco.contour:GetRecordsFromFormOnPage($currentPage/@id,'formid')//uformrecord>
...
</xsl:for-each>Remember to replace formid with the id of your form. Also see the documentation http://umbraco.org/pro-downloads/contour/ContourDeveloperDocs.pdf
Hope this helps,Harald
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Can the data submitted from a Contour form be displayed on a page in Umbraco
Can the data submitted from a Contour form be displayed on a page in Umbraco?
Absolutley,
you can use XSLT or a user control to display contour data. Contour is shipped with some Xslt helper functions such as GetRecordsFromFormOnPage.
Create a new xslt and verify that you have a xmlns definition for Contour:
xmlns:umbraco.contour="urn:umbraco.contour"
And that it's also in the exclude-result-prefixes as umbraco.contour
You can then use
<xsl:for-each select="umbraco.contour:GetRecordsFromFormOnPage($currentPage/@id,'formid')//uformrecord>
...
</xsl:for-each>
Remember to replace formid with the id of your form. Also see the documentation http://umbraco.org/pro-downloads/contour/ContourDeveloperDocs.pdf
Hope this helps,
Harald
is working on a reply...