Sitecore 营销人员模块的按钮图像
我想使用 Sitecore 中的图像更改营销人员 Web 表单模块的提交按钮。
提前致谢
I want to change submit button of Web Forms for Marketers module with image in Sitecore.
Thank in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以通过更新以下文件的内容来更改按钮:
\sitecoremodules\Web\Web Forms for Marketers\Control\SitecoreSimpleFormAscx.ascx
替换
为您自己的自定义控件(可以包含 Image / LinkButton /任何)
You can change the button by updating contents of the following file:
\sitecore modules\Web\Web Forms for Marketers\Control\SitecoreSimpleFormAscx.ascx
Replace
with you own custom control (which can contain Image / LinkButton / whatever)
听起来您正在尝试将提交按钮更改为
。我还没有找到使用 WFFM 执行此操作的方法。您可以设置提交按钮的样式,也可以将表单导出到 ASCX 并自行更改图像。
您可以使用
的 CSS 样式做很多事情。
http://www.456bereastreet.com/lab/styling-表单控件重访/提交按钮/
It sounds like you are trying to change the submit button into an
<input type="image" />
. I have not found a way to do this with WFFM. You can style the submit button, or you can export the form to ASCX and make the change to an image yourself.You can do quite a bit with CSS styling of
<input type="submit" />
.http://www.456bereastreet.com/lab/styling-form-controls-revisited/submit-button/
您可以在 Default.css 中更改按钮样式。
使用background-image 添加图像。
下面的示例使用图像作为 WFFM 中“提交”按钮的背景:
You can change the button style in Default.css.
Use background-image to add the image.
Below example use an image as background for the Submit button in WFFM:
我想您正在谈论“营销人员网络表单”模块,不是吗?从您最初的问题来看,尚不清楚...
无论如何,在表单设计器中,您可以选择提交按钮,并将其属性放在左侧。在各种属性中,第一个是名为“按钮名称”的编辑框。将“提交”按钮所需的文本放在那里。
I suppose you're talking about Web Forms for Marketers module, aren't you? It is not clear from your initial question...
Anyway, in Form designer you can select the submit button and you'll its properties on the left side. Among various properties, the very first is the edit box called "Button Name" . Put the desired text for the Submit button there.
我是这样做的。
首先,创建自定义控件:
在sitecore中将表单导出为ASCX,使用开发人员中心创建一个新的子布局并将导出的ASCX代码复制到该文件中。首先,注册一个新的前缀
最后,更改
为
最后,用子布局替换项目中的表单。
Here's how I did it.
First, create a custom control:
Export the form as ASCX in sitecore, use the Developer Center to create a new Sublayout and copy the exported ASCX code into this file. First, register a new prefix
Finally, change
to
Finally, replace the form in your item with the sublayout.