Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是:如何在后端文件 (*.master.cs) 中获取 Umbraco CMS 中当前内容的一部分?大约 350 个字符,但我敢肯定,一个大的没关系。有什么有用的方法可以做到吗?Umbraco 版本:4.6.2。
问候
我自己找到了解决方案:
string part = currentNode.GetProperty("bodyText").Value.Substring(0, 450) + "...";