EPiServer:我可以从代码隐藏设置动态属性吗?
我尝试将其设置为普通的页面属性,但没有成功。
我想我可以使用 DynamicProperty 类,但由于无缓存问题,我真的想避免这种情况。
有人建议吗?
I tried to set it as a normal page-property, but no luck.
Guess I could use the DynamicProperty class but I really want to avoid this because of the no-cache issue.
Suggestions anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,执行此操作的唯一方法是使用 DynamicProperty 类。如果您查看 PageData 对象上索引器属性的文档它说:
您将需要使用 DynamicProperty 类:
或者,您可以使用 Joel 讨论的想法来规避动态属性 此处
AFAIK the only way to do this is with the DynamicProperty class. If you look at the documentation on the indexer property on the PageData object it says:
You will need to use the DynamicProperty class:
Alternatively, you could circumvent the Dynamic Property using an idea Joel discusses here