I have a 6 items of the same content type \"news\", in each item I have a field newsIntro. I want to put the fields in specific pages on another page so I need to target a s
First, get an IPublishedContent object from the TypedContent method and then use GetPropertyValue to retrieve the value of the field.
@{ int nodeId = 1720; IPublishedContent contentNode = Umbraco.TypedContent(nodeId); var newsIntro = contentNode.GetPropertyValue("newsIntro"); } @newsIntro
@newsIntro