我目前正试图将变换作为变换的一部分:
<cms:BizForm runat="server" ID="BizForm" FormName="YourBizFormCodeName" EnableViewState="false" FormDisplayText="Form submitted"/>
在DocumentType / PageType中,我有一个字段,允许用户在提交表单后输入他们想要显示的内容,因此理论上我需要将FormDisplayText更改为已提供的内容。
我尝试在FormDisplayText中使用Eval(&#34; SubmitText&#34;),但它不起作用。
有人有解决方案吗?
谢谢
答案 0 :(得分:1)
以下代码适用于我(Kentico v8.1):
<cms:BizForm runat="server" ID="BizForm" FormName="test" EnableViewState="false"
FormDisplayText='<%# CMS.MacroEngine.MacroContext.CurrentResolver.ResolveMacros("{%CurrentDocument.SubmitText#%}") %>' />