Sitecore 6 - 如何在代码隐藏中存储 html 格式的文本和引用
我希望能够在 Sitecore 中存储可重用的 html 格式文本,并在代码隐藏中进行引用,以便包含在自定义用户控件中。这样做的最佳实践是什么?例如,如果用户选择选项 A,我将在控件中引用标准文本 A。任何有关如何实现这一点的示例都将受到赞赏。谢谢。
I would like to be able to store reusable html-formatted text in Sitecore and reference in codebehind for inclusion in a custom user control. What is the best practice for doing this? If a user selects option A, for example, I would reference standard text A in my control. Any examples for how to accomplish this are appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您有几个选项:
伪代码中的No.2:
You have a couple options:
No.2 in pseudo-code:
我想我会做类似 techphoria414 的 2. 选项的事情:
即您像往常一样拥有正常的“页面”模板,但是您有一些字段(多列表、树列表字段),您将指向包含的其他项目的源代码放在其中不同的文本。
那么你基本上只需要从当前项目中获取项目(使用一些非常快速的脏代码/伪代码):
你不应该只是将它们添加到文字中,如果使用 Sitecore,你应该在 Field renderes 中构建 Sitecore 6 或以上,它是一个富文本字段。
我希望这有帮助。
I think I would do something like techphoria414's 2. option:
ie you have your normal "page" templates as per usual, but then you have some fields (multilist, treelist fields), where you put the source pointing to your other items contain the different texts.
then you basically just have to get the items from the current item (with some very quick'n'dirty code/pseudocode):
You ofc shouldn't just add them to a literal and you should you Sitecore built in Field renderes if using Sitecore 6 or above and it's a Rich text field.
I hope that helps.