Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is: How can I get a part of a current content in Umbraco CMS in backend file (*.master.cs)? About 350 characters, but i'm sure, that a large does not matter. Is there any useful method to do it? Umbraco version: 4.6.2.

Regards

share|improve this question

1 Answer

up vote 0 down vote accepted

I found solution myself:

   string part = currentNode.GetProperty("bodyText").Value.Substring(0, 450) + "...";
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.