I have this line i an Umbraco solution, which gets me the ids of the nodes selected, comma seperated.
But what i want to get, in a oneliner, is a value of the node(s) selected. So currently it is just returning the node id like "1001, 1000, 1003" or just "1003" if only one is selected.
What i want it to return, is a value of the selected node. Lets say its a menu title on the property i want. So instead of the above output, i want "Frontpage, Contact, About Us" etc.
How would that look?
var mynode = Page.Cache.GetById(id);
mynode.GetPropertyString("pages")