Sitecore(营销人员网络表单)成功页面
假设我使用营销人员 Web 表单模块 2.2(针对 CMS 6.4)制作了一个简单的表单,并将其设置为使用“成功页面”(服务器端重定向到指定的 sitecore 项目)。这很好用。
现在事实证明,感谢页面需要显示刚刚提交的表单中的某些字段变量。
“亲爱的 x,感谢您对 Y 的兴趣”。
在成功页面上,似乎无法检索我需要显示此信息的信息(服务器端)。
解决这个问题的好方法是什么? 在页面重定向到成功页面之前,有没有办法挂接到 sitecore Web 表单(例如,这样我就可以传递 orderId)?
Let's imagine I've made a simple form using the Web Forms for Marketers module 2.2 (for CMS 6.4), and have set this up to use a 'success page' (server side redirect to a specified sitecore item). This works great.
Now it turns out that the thank you page needs to show certain field variables from the form which was just submitted.
"Dear x, thank you for your interest in Y".
On the success page, it seems like there is no way to retrieve the information (server-side) I need to show this information.
What would be a good way to approach this problem?
Is there a way to hook into sitecore webforms before the page is redirected to the success page (so I can pass along an orderId, for example)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个自定义操作,该操作将使您能够访问所有表单数据。通过该操作,您可以将用户重定向到适当的位置。您可以在 参考指南(第 42 页)。
确保您的操作始终在“保存到数据库”之后,否则数据将不会被保存。
You can create a custom action which will give you access to all the forms data. From the action you can redirect the user to the appropriate place. You can find documentation on how to create a custom action in the reference guide on page 42.
Make sure your action is always after Save To Database because otherwise the data won't be saved.