Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
How do I get the properties from a macro for a node?
The code below shows how I am getting the Umbraco node.
int nodeId = Convert.ToInt32(Request["id"]);
Node myNode = new Node(nodeId);
Properties nodeProperties = myNode.Properties;
myNode.GetProperty("Alias").Value
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Read Macro Properties From Code Behind
How do I get the properties from a macro for a node?
The code below shows how I am getting the Umbraco node.
int nodeId = Convert.ToInt32(Request["id"]);
Node myNode = new Node(nodeId);
Properties nodeProperties = myNode.Properties;
myNode.GetProperty("Alias").Value
is working on a reply...